Skip to content

Commit 94dffab

Browse files
authored
Migrate CI to github actions; also update tested versions to more current releases (#33)
1 parent 288306d commit 94dffab

2 files changed

Lines changed: 23 additions & 16 deletions

File tree

.github/workflows/node-ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Node CI
2+
on: [push, pull_request]
3+
4+
jobs:
5+
node-ci:
6+
runs-on: ubuntu-latest
7+
8+
strategy:
9+
matrix:
10+
node-version: [8, 10, 12, 14, 15]
11+
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: Set up Node JS ${{ matrix.node-version }}
15+
uses: actions/setup-node@v1
16+
with:
17+
node-version: ${{ matrix.node-version }}
18+
- run: npm install
19+
- name: Linting
20+
run: npm run lint
21+
- name: Testing
22+
run: npm run test
23+

.travis.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)