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
12 changes: 6 additions & 6 deletions .github/workflows/node-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [23, 24, 25]
node-version: [25]
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [23, 24, 25]
node-version: [25]
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand All @@ -57,7 +57,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [23, 24, 25]
node-version: [25]
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand All @@ -83,7 +83,7 @@ jobs:
needs: build
strategy:
matrix:
node-version: [23, 24, 25]
node-version: [25]
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down Expand Up @@ -115,13 +115,13 @@ jobs:
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: playwright-report-node-${{ matrix.node-version }}
path: test-results/
path: playwright-report/
retention-days: 7

docker-build:
name: Docker Build (cache only)
runs-on: ubuntu-latest
needs: [lint, test, build]
needs: [e2e]

permissions:
contents: read
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ RUN apk add --no-cache \

WORKDIR /app

ENV NEXT_TELEMETRY_DISABLED=1

RUN mkdir -p /app/data

# dependency files
Expand Down
4 changes: 1 addition & 3 deletions next.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import type { NextConfig } from "next";
import { readFileSync } from "fs";

const pkg = JSON.parse(readFileSync("./package.json", "utf-8"));
import pkg from "./package.json";

// Allow disabling TLS certificate verification for environments with
// self-signed certs or corporate proxies (set INSECURE_TLS=1).
Expand Down
Loading
Loading