Switch from CircleCI -> GitHub Workflows

This commit is contained in:
Josh Dick
2019-11-11 14:53:13 -05:00
parent fe03597611
commit cdff3a934c
2 changed files with 27 additions and 38 deletions

27
.github/workflows/nodejs.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: Validate Templates
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
working-directory: build
run: |
npm ci
npm run build --if-present
npm test
env:
CI: true