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/workflows/api-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
node-version:
description: Node.js version to use
type: string
default: "20"
default: "26"

jobs:
api-tests:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI

on:
push:
#branches:
#- main
#- dev
branches:
- main
- dev
paths-ignore:
- "docs/**"
- "website/**"
Expand Down Expand Up @@ -33,8 +33,8 @@ on:
node-version:
description: Node.js version
type: choice
options: ["21", "22"]
default: "22"
options: ["22", "25", "26"]
default: "26"

concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
Expand All @@ -61,7 +61,7 @@ jobs:
contents: read
pull-requests: write
with:
node-version: ${{ inputs.node-version || '22' }}
node-version: ${{ inputs.node-version || '26' }}

integration-tests:
name: Integration Tests
Expand All @@ -73,7 +73,7 @@ jobs:
pull-requests: write
with:
python-version: ${{ inputs.python-version || '3.12' }}
node-version: ${{ inputs.node-version || '22' }}
node-version: ${{ inputs.node-version || '26' }}

docker-build:
name: Docker Build
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -379,3 +379,4 @@ frontend/dist/
**/reports/*.xml
audit-output.txt
coverage-output.txt
.nvmrc
2 changes: 1 addition & 1 deletion Dockerfile.frontend
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-slim AS build
FROM node:26-slim AS build

WORKDIR /app/frontend

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.monolith
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -- Stage 1: Build React frontend ---------------------------------------------
FROM node:20-slim AS frontend-build
FROM node:26-slim AS frontend-build

WORKDIR /app/frontend

Expand Down
Loading
Loading