Skip to content

Commit 851f788

Browse files
Feature/update node versions (#455)
* chore: update node versions Signed-off-by: Nicklas Silversved <nicklas.silversved@digg.se>
1 parent 286dff9 commit 851f788

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.github/artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ artifacts:
1414
publish-to:
1515
- github-packages
1616
config:
17-
node-version: 22
17+
node-version: 24
1818

1919
# Container builds from source (no artifact dependency)
2020
# Containerfile copies source code and runs npm install

.npmrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
; SPDX-License-Identifier: CC0-1.0
44

55
@diggsweden:registry=https://npm.pkg.github.com
6-
always-auth=true
76

87
# must use for correct package-lock.json
98
registry=https://registry.npmjs.org/

Containerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# SPDX-License-Identifier: CC0-1.0
44

5-
FROM node:22.20.0-slim@sha256:d943bf20249f8b92eff6f605362df2ee9cf2d6ce2ea771a8886e126ec8714f08 AS build
5+
FROM node:24.11.0-slim AS build
66
WORKDIR /app
77

88
COPY package*.json ./
@@ -15,7 +15,7 @@ RUN npm run build
1515

1616
RUN npm prune --omit=dev
1717

18-
FROM node:22.20.0-slim@sha256:d943bf20249f8b92eff6f605362df2ee9cf2d6ce2ea771a8886e126ec8714f08 AS runtime
18+
FROM node:24.11.0-slim AS runtime
1919
ENV NODE_ENV=production
2020
WORKDIR /app
2121

tsconfig.jest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
4-
"module": "NodeNext",
4+
"module": "commonjs",
55
"moduleResolution": "NodeNext",
66
"target": "ES2020",
77
"esModuleInterop": true,
8-
"sourceMap": true,
8+
"sourceMap": true
99
},
1010
"include": ["src", "tests"]
11-
}
11+
}

0 commit comments

Comments
 (0)