Skip to content

[major] bump to 1.0.0 #13

[major] bump to 1.0.0

[major] bump to 1.0.0 #13

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/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: run test
run: |
npm ci
npx playwright install --with-deps
npm run test:all