Skip to content

Commit 3cc5b43

Browse files
committed
CI build extended to NodeJS 14
1 parent 3eefe49 commit 3cc5b43

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/git-build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,15 @@ jobs:
88

99
runs-on: ubuntu-latest
1010

11+
strategy:
12+
matrix:
13+
node-version: [12.x, 14.x]
14+
1115
steps:
1216
- uses: actions/checkout@v2
1317
- uses: actions/setup-node@v1
1418
with:
15-
node-version: '12.18.3'
19+
node-version: ${{ matrix.node-version }}
1620
- run: npm ci
1721
- run: npm run test
1822
- run: npm run test-coverage

0 commit comments

Comments
 (0)