Skip to content

Commit

Permalink
Merge pull request #10 from goto-bus-stop/updates
Browse files Browse the repository at this point in the history
Update dependencies and fix `npm test`
  • Loading branch information
ALMaclaine authored Dec 6, 2019
2 parents af41ed2 + 6f104f4 commit 7a366b0
Show file tree
Hide file tree
Showing 5 changed files with 259 additions and 336 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Node CI

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [4.x, 6.x, 8.x, 9.x, 10.x, 11.x, 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 }}
- run: npm install
- run: npm test
Loading

0 comments on commit 7a366b0

Please sign in to comment.