Skip to content

Commit 3fb90a9

Browse files
committed
ci: update packages
1 parent de2d6a8 commit 3fb90a9

5 files changed

Lines changed: 127 additions & 140 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
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)