Add plugin for rapid generation of staff pages #1830
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: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'npm' | |
- run: npm ci | |
- uses: nrwl/nx-set-shas@v3 | |
# Check linting/formatting of workspace files. | |
- run: npx nx workspace-lint | |
- run: npx nx format:check | |
# Lint/test/build any apps and libs that have been impacted by the diff. | |
- run: npx nx affected --target=lint --parallel=3 | |
- run: npx nx affected --target=test --parallel=3 --ci --code-coverage | |
- run: npx nx affected --target=build --parallel=3 --exclude=tup-cms |