Skip to content

Commit

Permalink
add CI system to run what tests there are (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
camallen authored Sep 30, 2022
1 parent 630c5e3 commit 34e5722
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI Tests

on:
pull_request:
push:
branches:
- master
workflow_dispatch:
jobs:
run_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16
uses: actions/setup-node@v2
with:
node-version: '16.13.x'
cache: 'npm'
- run: npm ci
- run: npm run test

0 comments on commit 34e5722

Please sign in to comment.