diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index dd9e66b..a485cb6 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -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 }} diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dadf1ce..26279d9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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