Add new CI workflow using GitHub actions

pull/86/head
pathmapper 4 years ago
parent eb04537a67
commit 3e2d8b292f

@ -0,0 +1,26 @@
name: CI
on:
push:
branches: [ gh-pages ]
pull_request:
branches: [ gh-pages ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run validate
- run: npm run diff
Loading…
Cancel
Save