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 11, 2020
1 parent 0782b4e commit 8ca47cf
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,17 @@
name: CI
on: [push, pull_request]
jobs:
build:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [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

0 comments on commit 8ca47cf

Please sign in to comment.