Skip to content

Commit d17f52b

Browse files
feat: bump the npm group across 1 directory with 15 updates (#32)
1 parent 9ccce59 commit d17f52b

7 files changed

Lines changed: 6090 additions & 7807 deletions

File tree

.github/workflows/node-lint-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
node-version: [23, 24, 25]
16+
node-version: [25]
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
strategy:
3737
matrix:
38-
node-version: [23, 24, 25]
38+
node-version: [25]
3939
steps:
4040
- name: Checkout
4141
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -57,7 +57,7 @@ jobs:
5757
runs-on: ubuntu-latest
5858
strategy:
5959
matrix:
60-
node-version: [23, 24, 25]
60+
node-version: [25]
6161
steps:
6262
- name: Checkout
6363
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -83,7 +83,7 @@ jobs:
8383
needs: build
8484
strategy:
8585
matrix:
86-
node-version: [23, 24, 25]
86+
node-version: [25]
8787
steps:
8888
- name: Checkout
8989
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -115,13 +115,13 @@ jobs:
115115
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
116116
with:
117117
name: playwright-report-node-${{ matrix.node-version }}
118-
path: test-results/
118+
path: playwright-report/
119119
retention-days: 7
120120

121121
docker-build:
122122
name: Docker Build (cache only)
123123
runs-on: ubuntu-latest
124-
needs: [lint, test, build]
124+
needs: [e2e]
125125

126126
permissions:
127127
contents: read

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ RUN apk add --no-cache \
1717

1818
WORKDIR /app
1919

20+
ENV NEXT_TELEMETRY_DISABLED=1
21+
2022
RUN mkdir -p /app/data
2123

2224
# dependency files

next.config.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import type { NextConfig } from "next";
2-
import { readFileSync } from "fs";
3-
4-
const pkg = JSON.parse(readFileSync("./package.json", "utf-8"));
2+
import pkg from "./package.json";
53

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

0 commit comments

Comments
 (0)