-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #132 from MattiasBuelens/run-wpt-in-browser
Run web platform tests in browsers
- Loading branch information
Showing
9 changed files
with
689 additions
and
209 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.