Skip to content

Commit

Permalink
Adds CI workflow back in
Browse files Browse the repository at this point in the history
  • Loading branch information
philnash committed Nov 10, 2024
1 parent ca8c753 commit 27db087
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Tests

on: [push]

jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 12.x
- run: npm install
- name: Run tests
uses: coactions/setup-xvfb@v1
with:
run: npm test

0 comments on commit 27db087

Please sign in to comment.