Skip to content

Commit

Permalink
Add initial CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
timkurvers committed Mar 12, 2020
1 parent 38a84da commit 9127e4f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,18 @@
name: ci
on: [push, pull_request]
jobs:
build:
name: lint and test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
steps:
- uses: actions/checkout@v2
- name: Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint
- run: npm test

0 comments on commit 9127e4f

Please sign in to comment.