Chore/cache buster name tweak #172
Workflow file for this run
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: | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: nrwl/nx-set-shas@v3 | |
- run: npm ci | |
- run: npx nx workspace-lint | |
- run: npm run lint | |
- run: npx nx affected --target=test:types --parallel=3 | |
- uses: FedericoCarboni/setup-ffmpeg@v2 | |
- run: npx nx affected --target=build --parallel=3 | |
- run: npx nx affected --target=test --parallel=3 --ci |