docs: upgrade-guide for v5 and updates in angular guide #881
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: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
PUPPETEER_SKIP_DOWNLOAD: true | |
jobs: | |
build-libs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
registry-url: 'https://registry.npmjs.org' | |
cache: 'npm' | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- run: npm install | |
- run: npm run test | |
- run: npm run build | |
- run: npm run prettier:check | |
- run: npm run lint:lib | |
- name: verify clean build | |
run: git diff --exit-code |