Skip to content

feat: add build phase to CI #3

feat: add build phase to CI

feat: add build phase to CI #3

Workflow file for this run

name: CI
on:
- push
concurrency:
group: check
cancel-in-progress: true
jobs:
check:
name: Lint app and run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: yarn
- run: yarn install --frozen-lockfile --production=false
- run: yarn lint
- run: yarn build