Skip to content

Commit 5d51abf

Browse files
committed
chore: update node version to lts/krypton (24)
1 parent 7adfd8e commit 5d51abf

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.gitlab-ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@ stages:
33
- test
44
- report
55

6+
variables:
7+
NODE_VERSION: "24.12.0"
8+
69
build:
710
stage: build
8-
image: node:20.18.1
11+
image: node:${NODE_VERSION}
912
before_script:
1013
- yarn install --frozen-lockfile
1114
script:
@@ -35,7 +38,7 @@ build-docker:
3538

3639
e2e_test:
3740
stage: test
38-
image: node:20.18.1
41+
image: node:${NODE_VERSION}
3942
variables:
4043
POSTGRES_DB: db
4144
POSTGRES_USER: user
@@ -82,7 +85,7 @@ e2e_test:
8285

8386
lint:
8487
stage: test
85-
image: node:20.18.1
88+
image: node:${NODE_VERSION}
8689
before_script:
8790
- yarn install --frozen-lockfile
8891
script:

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v20.18.1
1+
v24.12.0

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:20-bullseye
1+
FROM node:24-bullseye
22
WORKDIR /app/verifier-indexer-api
33
COPY ["package.json", "package-lock.json*", "npm-shrinkwrap.json*", "yarn.lock", "./"]
44
ENV DEBIAN_FRONTEND=noninteractive

0 commit comments

Comments
 (0)