feat: upgrade to Angular 17 (#42) #159
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, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
cache: yarn | |
node-version-file: '.nvmrc' | |
- name: "Yarn: Install dependencies" | |
run: yarn install --frozen-lockfile --non-interactive | |
- name: Build package | |
run: yarn build | |
- name: Lint package | |
run: yarn lint | |
- name: Test package | |
run: yarn test |