Compare commits

..

2 Commits

Author SHA1 Message Date
d7e427f164 Fixes so services page comes up (hopefully)
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/push/deploy Pipeline was successful
2026-03-09 22:02:28 -03:00
a9c25917f0 Update package.json 2026-03-09 21:54:10 -03:00
3 changed files with 7 additions and 4 deletions

View File

@@ -1 +1,4 @@
pnpm run test:ci # Only run CI tests when files under src/ are changed
if git diff --cached --name-only | grep -q '^src/'; then
pnpm run test:ci
fi

View File

@@ -103,9 +103,9 @@ http {
access_log off; access_log off;
} }
# Default location # Default location: try $uri.html so /services serves services.html, /services/foo serves services/foo.html
location / { location / {
try_files $uri $uri/ /index.html; try_files $uri $uri.html $uri/ /index.html;
} }
# 410 Gone: permanently removed URLs (tells crawlers to deindex) # 410 Gone: permanently removed URLs (tells crawlers to deindex)

View File

@@ -23,7 +23,7 @@
"test:e2e": "bash scripts/run-e2e.sh", "test:e2e": "bash scripts/run-e2e.sh",
"test:e2e:update-snapshots": "bash scripts/update-e2e-snapshots.sh", "test:e2e:update-snapshots": "bash scripts/update-e2e-snapshots.sh",
"test:all": "vitest run && playwright test", "test:all": "vitest run && playwright test",
"test:ci": "pnpm run lint && pnpm run lint:css && pnpm exec svelte-kit sync && pnpm test && pnpm run test:e2e", "test:ci": "pnpm run lint && pnpm run lint:css && pnpm exec svelte-kit sync && pnpm test && pnpm run test:e2e && pnpm install --config.confirmModulesPurge=false",
"test:watch": "vitest", "test:watch": "vitest",
"prepare": "husky" "prepare": "husky"
}, },