Skip to content

Commit

Permalink
Meta: run reference-implementation tests on GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
foolip committed Jun 12, 2020
1 parent 78ad917 commit 1f5401c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
test:
name: Test
runs-on: ubuntu-20.04
defaults:
run:
working-directory: reference-implementation
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions/setup-node@v1
with:
node-version: 14
- run: npm install
- run: npm test

0 comments on commit 1f5401c

Please sign in to comment.