Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/lint-js-and-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ jobs:
- name: Setup Node
uses: ./.github/actions/setup-node-with-retry
with:
node-version: 22
# Pin to 22.11.0 (LTS) to avoid V8 bug in 22.21.0
# https://github.com/nodejs/node/issues/56010
node-version: '22.11.0'
cache: yarn
cache-dependency-path: '**/yarn.lock'
- name: Print system information
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ jobs:

- name: Build test assets
working-directory: spec/dummy
run: yarn build:test
run: yarn run build:test

- name: Run Playwright tests
working-directory: spec/dummy
run: yarn test:e2e
run: yarn run test:e2e

- uses: actions/upload-artifact@v4
if: always()
Expand Down
Loading