Add Github workflow for CI tests

This commit is contained in:
stvn
2020-11-17 12:19:48 -08:00
parent e627fd6f27
commit 7086bdc9ab

17
.github/workflows/validate.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: validate
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 12
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: make validate.ci