Skip to content

chore: align example.spec with new upstream default (#94) #255

chore: align example.spec with new upstream default (#94)

chore: align example.spec with new upstream default (#94) #255

Workflow file for this run

name: create-playwright CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [16.x, 18.x, 20.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm i -g npm@8
- run: npm i -g yarn@1
- run: npm i -g pnpm@7
- run: npm ci
- run: npx playwright install-deps
- run: npm run build
- run: npx tsc --noEmit
- run: npm run test