File tree Expand file tree Collapse file tree 1 file changed +3
-23
lines changed
Expand file tree Collapse file tree 1 file changed +3
-23
lines changed Original file line number Diff line number Diff line change 3636 - name : Start Nx Cloud CI run with agents
3737 run : ./node_modules/.bin/nx-cloud start-ci-run --distribute-on="3 linux-medium-js" --stop-agents-after="build"
3838
39- # Run format check
40- - name : Check formatting of affected files
41- run : npx nx format:check
42-
43- # Run linting on affected projects
44- - name : Lint affected projects
45- run : npx nx affected:lint --parallel=3
46-
47- # Run unit tests on affected projects
48- - name : Unit test affected projects
49- run : npx nx affected -t unit-test --parallel=3 --coverage.enabled
50-
51- # Run integration tests on affected projects
52- - name : Integration test affected projects
53- run : npx nx affected -t int-test --parallel=3 --coverage.enabled
54-
55- # Run e2e tests on affected projects
56- - name : E2E test affected projects
57- run : npx nx affected -t e2e-test --parallel=1
58-
59- # Build all projects for package publishing
60- - name : Build all projects
61- run : npx nx run-many --target=build --parallel=3 --configuration=ci
39+ # Run all CI tasks with Nx Cloud distribution
40+ - name : Run CI tasks
41+ run : npx nx run-many -t format:check lint unit-test int-test e2e-test build --configuration=ci
6242
6343 # Test-release packages
6444 - name : Test-release packages
You can’t perform that action at this time.
0 commit comments