fix: run svelte-kit sync before svelte-check in Docker build
Some checks failed
CI / test (pull_request) Has been cancelled
CI / test (push) Successful in 8m19s

.svelte-kit/tsconfig.json is gitignored and must be generated at
build time — svelte-check cannot run without it.
This commit was merged in pull request #2.
This commit is contained in:
2026-05-05 02:48:40 +02:00
parent ab9d1fc547
commit 39341ce69d

View File

@@ -5,6 +5,7 @@ RUN corepack enable && corepack prepare pnpm --activate
COPY frontend/package.json frontend/pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile
COPY frontend/ ./
RUN pnpm svelte-kit sync
RUN pnpm run check
RUN pnpm run build