Skip to content

Commit

Permalink
build: corrected build
Browse files Browse the repository at this point in the history
  • Loading branch information
thorsten committed May 30, 2024
1 parent 8b5a733 commit 5409ec0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,13 @@ jobs:
node-version: '20'
cache: 'pnpm'

- name: Install Node.js dependencies
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 8
run_install: false

- name: Install dependencies
run: pnpm install

- name: Run Jest tests
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,23 +151,23 @@ To run our end-to-end tests via Playwright, you can use several commands:

$ pnpm exec playwright test

Runs the end-to-end tests.
Run the end-to-end tests.

$ pnpm exec playwright test --ui

Starts the interactive UI mode.
Start the interactive UI mode.

$ pnpm exec playwright test --project=chromium

Runs the tests only on Desktop Chrome.

$ pnpm exec playwright test example

Runs the tests in a specific file.
Run the tests in a specific file.

$ pnpm exec playwright test --debug

Runs the tests in debug mode.
Run the tests in debug mode.

$ pnpm exec playwright codegen

Expand Down

0 comments on commit 5409ec0

Please sign in to comment.