fix: ensure Dockerfile and github actions use the same nodejs version

This commit is contained in:
Sylvere Richard
2024-10-05 18:45:37 +02:00
parent 9ca2350a13
commit fc44924256
2 changed files with 3 additions and 3 deletions

View File

@@ -21,7 +21,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20' # Or specify any other version you want to use
node-version: '21' # Or specify any other version you want to use
- name: Install Dependencies
run: npm install
@@ -48,7 +48,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version: '21'
- name: Install Dependencies
run: npm ci