Bump ws from 8.16.0 to 8.17.1 in /test/webpack #352
Workflow file for this run
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
name: Test on push | |
on: [push] | |
jobs: | |
test-node: | |
name: Node ${{ matrix.node-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
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@v4 | |
with: | |
submodules: true | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
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 | |
- run: npm run test:bundlers | |
test-browser: | |
name: ${{ matrix.browser }} | |
runs-on: ubuntu-latest | |
container: | |
image: mcr.microsoft.com/playwright:v1.42.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@v4 | |
with: | |
submodules: true | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
- run: npm ci | |
- run: npm run test:wpt:${{ matrix.browser }} | |
env: | |
HOME: /root |