Skip to content

Commit

Permalink
Merge 67bef27 into 9542f79
Browse files Browse the repository at this point in the history
  • Loading branch information
neild3r committed Aug 18, 2021
2 parents 9542f79 + 67bef27 commit b218ec7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: run-tests
on: [push]

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

0 comments on commit b218ec7

Please sign in to comment.