Skip to content

Merge pull request #296 from ecmel/dependabot/npm_and_yarn/rollup-4.22.4 #246

Merge pull request #296 from ecmel/dependabot/npm_and_yarn/rollup-4.22.4

Merge pull request #296 from ecmel/dependabot/npm_and_yarn/rollup-4.22.4 #246

Workflow file for this run

name: Tests
on:
push:
branches:
- master
jobs:
build:
strategy:
fail-fast: true
matrix:
node-version: [18]
os: [ubuntu-22.04, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: xvfb-run -a npm test
if: runner.os == 'Linux'
- run: npm test
if: runner.os != 'Linux'