Skip to content

Commit

Permalink
Merge pull request #132 from MattiasBuelens/run-wpt-in-browser
Browse files Browse the repository at this point in the history
Run web platform tests in browsers
  • Loading branch information
MattiasBuelens authored Jan 3, 2024
2 parents 5f232af + 5976bf6 commit da6e08e
Show file tree
Hide file tree
Showing 9 changed files with 689 additions and 209 deletions.
37 changes: 20 additions & 17 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,32 @@
name: Build pull request
on: [pull_request]
name: Test pull request
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
jobs:
build:
test-node:
name: Node
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
# Run only on non-merged non-draft mergeable pull requests
if: |
!(
(github.event.action == 'opened' || github.event.action == 'reopened' || github.event.action == 'synchronize')
&& !github.event.pull_request.draft
(
!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@v2
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.merge_commit_sha }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
submodules: true
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install and test
run: |
npm install
npm test
node-version: 20
cache: npm
- run: npm ci
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
- run: npm run test:types
- run: npm run test:unit
- run: npm run test:wpt:node
50 changes: 41 additions & 9 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,54 @@
name: Build on push
name: Test on push
on: [push]
jobs:
build:
test-node:
name: Node ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
node-version: [18, 20]
# Skip job if commit message contains "[skip ci]"
if: |
!contains(github.event.head_commit.message, '[skip ci]')
steps:
- name: Check out commit
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: true
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install and test
run: |
npm install
npm test
cache: npm
- run: npm ci
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
- run: npm run test:types
- run: npm run test:unit
- run: npm run test:wpt:node

test-browser:
name: ${{ matrix.browser }}
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.40.0-jammy
strategy:
fail-fast: false
matrix:
browser: [chromium, firefox]
if: |
!contains(github.event.head_commit.message, '[skip ci]')
steps:
- name: Check out commit
uses: actions/checkout@v3
with:
submodules: true
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run test:wpt:${{ matrix.browser }}
env:
HOME: /root
Loading

0 comments on commit da6e08e

Please sign in to comment.