Skip to content

Merge pull request #30 from Julien-R44/feat/v6 #165

Merge pull request #30 from Julien-R44/feat/v6

Merge pull request #30 from Julien-R44/feat/v6 #165

Workflow file for this run

name: test
on:
- push
- pull_request
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version:
- 16.13.1
- 17.x
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
- run: xvfb-run -a npm test
if: runner.os == 'Linux'
- run: npm test
if: runner.os != 'Linux'