Skip to content

Commit ed1af80

Browse files
committed
GitHub Actions: also test with Node.js 16.x
1 parent e1c9065 commit ed1af80

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

.dockerignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Git directory and Node.js modules
22
.git
33
*/node_modules/
4+
# GitHub Actions workflow
5+
.github/
46
# Don't copy generated images.
57
*/*.png

.github/workflows/node.js.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@ jobs:
88

99
strategy:
1010
matrix:
11-
node-version: [8.x, 10.x, 12.x, 14.x]
11+
node-version: [8.x, 10.x, 12.x, 14.x, 16.x]
1212

1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Use Node.js ${{ matrix.node-version }}
1616
uses: actions/setup-node@v1
1717
with:
1818
node-version: ${{ matrix.node-version }}
19+
- name: Display version information
20+
run: node --version && npm --version
1921
- run: cd "$GITHUB_WORKSPACE"/export-server && npm install

0 commit comments

Comments
 (0)