Skip to content

Commit

Permalink
ci: test on Node.js 20 LTS, too
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Oct 31, 2023
1 parent 29380b8 commit a54bc64
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 18.x]
node-version: [12.x, 14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
10 changes: 10 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,13 @@ node_18:
script:
- cd ./export-server
- npm install

node_20:
image: node:20-slim
stage: build
before_script:
- node --version
- npm --version
script:
- cd ./export-server
- npm install

0 comments on commit a54bc64

Please sign in to comment.