Remove sync build step from CI pipeline

This commit is contained in:
Torsten Dittmann
2025-03-28 23:21:06 +01:00
parent 510f7fd7d7
commit bda8a6dae1
2 changed files with 1 additions and 3 deletions
-2
View File
@@ -25,8 +25,6 @@ jobs:
run: pnpm audit --audit-level high
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run sync
run: pnpm run sync
- name: Svelte Diagnostics
run: pnpm run check
- name: Linter
+1 -1
View File
@@ -32,7 +32,7 @@ ENV PUBLIC_STRIPE_KEY=$PUBLIC_STRIPE_KEY
ENV SENTRY_AUTH_TOKEN=$SENTRY_AUTH_TOKEN
ENV NODE_OPTIONS=--max_old_space_size=8192
RUN pnpm run sync && pnpm run build
RUN pnpm run build
FROM nginx:1.25-alpine