feat: add build phase to CI #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |