File tree 2 files changed +11
-8
lines changed
2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -31,11 +31,14 @@ jobs:
31
31
cache : ' npm'
32
32
33
33
- run : npm ci --legacy-peer-deps
34
- - run : npx playwright install --with-deps
35
- - uses : nrwl/nx-set-shas@v4
34
+
35
+ # Run linting
36
+ - name : Run lint
37
+ run : npx nx lint
38
+ # Run tests
39
+ - name : Run tests
40
+ run : npx nx run-many --target=test --all --parallel
36
41
37
- # Prepend any command with "nx-cloud record --" to record its logs to Nx Cloud
38
- # - run: npx nx-cloud record -- echo Hello World
39
- # Nx Affected runs only tasks affected by the changes in this PR/commit. Learn more: https://nx.dev/ci/features/affected
40
- # When you enable task distribution, run the e2e-ci task instead of e2e
41
- - run : npx nx affected -t lint test build e2e
42
+ # Build all projects
43
+ - name : Build all projects
44
+ run : npx nx run-many --target=build --all --parallel
Original file line number Diff line number Diff line change 9
9
"test" : " ng test" ,
10
10
"lint" : " ng lint" ,
11
11
"e2e" : " ng e2e" ,
12
- "test:car-rental" : " nx test car-rental ./src/components/vehicles/edit-vehicle-form/edit-vehicle-form.component.spec.ts " ,
12
+ "test:car-rental" : " nx test car-rental" ,
13
13
"test:car-rental-backend" : " nx test car-rental-backend" ,
14
14
"build:car-rental" : " nx build car-rental" ,
15
15
"build:car-rental-backend" : " nx build car-rental-backend" ,
You can’t perform that action at this time.
0 commit comments