Skip to content

Commit 47a3962

Browse files
committed
build: Added support for node v16
1 parent 8cb1985 commit 47a3962

File tree

3 files changed

+39496
-13655
lines changed

3 files changed

+39496
-13655
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
name: Default CI
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches:
5+
- 'master'
6+
pull_request:
7+
branches:
8+
- '**'
39
jobs:
4-
build:
10+
tests:
511
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
node: [12, 14, 16]
615
steps:
716
- name: Checkout
817
uses: actions/checkout@v2
@@ -11,7 +20,7 @@ jobs:
1120
- name: Setup Nodejs
1221
uses: actions/setup-node@v2
1322
with:
14-
node-version: 12
23+
node-version: ${{ matrix.node }}
1524
- name: Install dependencies
1625
run: npm ci
1726
- name: Validate package-lock.json changes

0 commit comments

Comments
 (0)