diff --git a/.github/workflows/lint-js-and-ruby.yml b/.github/workflows/lint-js-and-ruby.yml index 2d55546b91..7c154f1d78 100644 --- a/.github/workflows/lint-js-and-ruby.yml +++ b/.github/workflows/lint-js-and-ruby.yml @@ -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 diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 92a0525dc5..aac0231bd2 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -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()