Skip to content
Open
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/workflows/build-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
node-version: 24.x

- name: Setup pnpm
uses: pnpm/action-setup@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Node.js PR workflow step ${{ matrix.command }}
uses: actions/setup-node@v4
with:
node-version: 22.x
node-version: 24.x

- name: Setup pnpm
uses: pnpm/action-setup@v4
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
- name: Node.js PR workflow step ${{ matrix.command }}
uses: actions/setup-node@v4
with:
node-version: 22.x
node-version: 24.x

- name: Setup pnpm
uses: pnpm/action-setup@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Node.js PR workflow step ${{ matrix.command }}
uses: actions/setup-node@v4
with:
node-version: 22.x
node-version: 24.x

- name: Setup pnpm
uses: pnpm/action-setup@v4
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22-bookworm AS build
FROM node:24-bookworm AS build
WORKDIR /home/build

ENV CI=true
Expand All @@ -22,7 +22,7 @@ RUN rm -rf node_modules client/node_modules server/node_modules shared/node_modu

RUN CI=true pnpm --filter=./server --filter=./client install --frozen-lockfile --prod

FROM node:22-bookworm-slim AS runtime
FROM node:24-bookworm-slim AS runtime
WORKDIR /home/app

ENV NODE_ENV=production
Expand Down
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@nuxt/eslint": "1.4.1",
"@pinia/nuxt": "0.11.1",
"@types/humanize-duration": "3.27.4",
"@types/node": "24.0.3",
"@types/node": "24.12.2",
"@types/papaparse": "5.3.16",
"@types/qrcode": "1.5.5",
"@types/ua-parser-js": "0.7.39",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"not Edge 18"
],
"devDependencies": {
"@types/node": "24.0.3",
"@types/node": "24.12.2",
"@typescript-eslint/parser": "8.35.0",
"eslint": "9.29.0",
"eslint-plugin-cypress": "5.1.0",
Expand Down
Loading
Loading