Skip to content

[patch] update GitHub Actions versions #60

[patch] update GitHub Actions versions

[patch] update GitHub Actions versions #60

Workflow file for this run

name: tests
on:
push:
branches:
- '**'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version-file: '.nvmrc'
- name: run test
run: |
npm ci
npx playwright install --with-deps
npm run test:all