Skip to content

Merge branch 'feat/email' into staging #916

Merge branch 'feat/email' into staging

Merge branch 'feat/email' into staging #916

name: CI
on: push
jobs:
lint-test-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node 18
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: |
npm install -g yarn
yarn install
- name: Run lint
run: yarn lint
- name: Run coverage
run: yarn coverage
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Build application
run: yarn build