Skip to content

Commit f9f6f6c

Browse files
committed
Adjusted github workflow
1 parent 648e6a3 commit f9f6f6c

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

.github/workflows/ci.yml

+10-7
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,14 @@ jobs:
3131
cache: 'npm'
3232

3333
- 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
3641

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"test": "ng test",
1010
"lint": "ng lint",
1111
"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",
1313
"test:car-rental-backend": "nx test car-rental-backend",
1414
"build:car-rental": "nx build car-rental",
1515
"build:car-rental-backend": "nx build car-rental-backend",

0 commit comments

Comments
 (0)