Skip to content

Commit 09ce01a

Browse files
committed
Start testing against node v16, add github workflows
1 parent 7682f83 commit 09ce01a

3 files changed

Lines changed: 27 additions & 0 deletions

File tree

.appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ build: off
22

33
environment:
44
matrix:
5+
- nodejs_version: '16'
56
- nodejs_version: '14'
67
- nodejs_version: '12'
78
- nodejs_version: '10'

.github/workflows/nodejs.yml

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

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ jobs:
44
script: npm run lint
55
language: node_js
66
node_js:
7+
- 16
78
- 14
89
- 12
910
- 10

0 commit comments

Comments
 (0)