Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/init-npm/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ inputs:
node-version:
description: 'Node.js version'
required: true
default: '20.x'
default: '22.13.1'
runs:
using: composite
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node: [20.x, 22.x]
node: [22.13.1]

steps:
- name: Check out TS Project Git repository
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:

strategy:
matrix:
node: [20.x, 22.x]
node: [22.13.1]

services:
# Label used to access the service container
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20
v22
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG CONFIG_UI_TAG_OR_HASH=a132252dda4dbe7ab0b14a92d0af06a9f50d7bd4

FROM node:20 as build
FROM node:22.13.1 as build

WORKDIR /tmp/buildApp

Expand All @@ -10,7 +10,7 @@ RUN npm ci
COPY . .
RUN npm run build

FROM node:20 as build-ui
FROM node:22.13.1 as build-ui

WORKDIR /tmp/buildApp
RUN apt-get update && apt-get install -y git
Expand All @@ -20,7 +20,7 @@ RUN git clone https://github.com/MapColonies/config-ui.git && \
npm ci && \
npm run build

FROM node:20.3.1-alpine3.17 as production
FROM node:22.13.1-alpine3.21 as production

RUN apk add dumb-init

Expand Down
3 changes: 3 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,5 +117,8 @@
"ts-node": "10.9.2",
"typescript": "^5.7.2",
"tsc-alias": "^1.8.10"
},
"engines": {
"node": ">=22.13.1"
}
}