Skip to content

Bump actions/checkout from 6.0.2 to 6.0.3 #233

Bump actions/checkout from 6.0.2 to 6.0.3

Bump actions/checkout from 6.0.2 to 6.0.3 #233

Workflow file for this run

name: Test pull request
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
jobs:
test-node:
name: Node
runs-on: ubuntu-latest
# Run only on non-merged non-draft mergeable pull requests
if: |
(
!github.event.pull_request.draft
&& !github.event.pull_request.merged
&& github.event.pull_request.merge_commit_sha != null
)
steps:
- name: Check out merge commit of pull request
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
with:
ref: ${{ github.event.pull_request.merge_commit_sha }}
submodules: true
- name: Use Node.js 24
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: 24
cache: npm
- run: npm ci --workspaces
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
- run: npm run test:types
- run: npm run test:unit
- run: npm run test:wpt:node
- run: npm run test:bundlers