fix(ci): use proper command to run playwright

This commit is contained in:
Elian Doran 2025-05-15 19:08:46 +03:00
parent 14a1455c5f
commit 517a06e068
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View File

@ -53,7 +53,7 @@ jobs:
run: pnpm install --frozen-lockfile run: pnpm install --frozen-lockfile
- name: Install Playwright Browsers - name: Install Playwright Browsers
run: npx playwright install --with-deps run: pnpx playwright install --with-deps
- name: Run the TypeScript build - name: Run the TypeScript build
run: pnpm run server:build run: pnpm run server:build
@ -82,7 +82,7 @@ jobs:
require-healthy: true require-healthy: true
- name: Run Playwright tests - name: Run Playwright tests
run: TRILIUM_DOCKER=1 TRILIUM_PORT=8082 npx playwright test run: TRILIUM_DOCKER=1 TRILIUM_PORT=8082 pnpx nx run -t e2e
- uses: actions/upload-artifact@v4 - uses: actions/upload-artifact@v4
if: ${{ !cancelled() }} if: ${{ !cancelled() }}
with: with:

View File

@ -33,11 +33,11 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: pnpm install --frozen-lockfile run: pnpm install --frozen-lockfile
- run: npx playwright install --with-deps - run: pnpx playwright install --with-deps
- uses: nrwl/nx-set-shas@v4 - uses: nrwl/nx-set-shas@v4
# Prepend any command with "nx-cloud record --" to record its logs to Nx Cloud # Prepend any command with "nx-cloud record --" to record its logs to Nx Cloud
# - run: npx nx-cloud record -- echo Hello World # - run: npx nx-cloud record -- echo Hello World
# Nx Affected runs only tasks affected by the changes in this PR/commit. Learn more: https://nx.dev/ci/features/affected # Nx Affected runs only tasks affected by the changes in this PR/commit. Learn more: https://nx.dev/ci/features/affected
# When you enable task distribution, run the e2e-ci task instead of e2e # When you enable task distribution, run the e2e-ci task instead of e2e
- run: npx nx affected -t e2e - run: pnpx nx affected -t e2e