File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 53
53
run : pnpm install --frozen-lockfile
54
54
55
55
- name : Install Playwright Browsers
56
- run : npx playwright install --with-deps
56
+ run : pnpx playwright install --with-deps
57
57
58
58
- name : Run the TypeScript build
59
59
run : pnpm run server:build
82
82
require-healthy : true
83
83
84
84
- name : Run Playwright tests
85
- run : TRILIUM_DOCKER=1 TRILIUM_PORT=8082 npx playwright test
85
+ run : TRILIUM_DOCKER=1 TRILIUM_PORT=8082 pnpx nx run -t e2e
86
86
- uses : actions/upload-artifact@v4
87
87
if : ${{ !cancelled() }}
88
88
with :
Original file line number Diff line number Diff line change @@ -33,11 +33,11 @@ jobs:
33
33
34
34
- name : Install dependencies
35
35
run : pnpm install --frozen-lockfile
36
- - run : npx playwright install --with-deps
36
+ - run : pnpx playwright install --with-deps
37
37
- uses : nrwl/nx-set-shas@v4
38
38
39
39
# Prepend any command with "nx-cloud record --" to record its logs to Nx Cloud
40
40
# - run: npx nx-cloud record -- echo Hello World
41
41
# Nx Affected runs only tasks affected by the changes in this PR/commit. Learn more: https://nx.dev/ci/features/affected
42
42
# When you enable task distribution, run the e2e-ci task instead of e2e
43
- - run : npx nx affected -t e2e
43
+ - run : pnpx nx affected -t e2e
You can’t perform that action at this time.
0 commit comments