Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: npm
- run: npm ci
- run: npx prettier --check .
Expand All @@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: npm
- run: npm ci
- run: npx eslint .
Expand All @@ -48,7 +48,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: npm
- run: npm ci
- run: npx stylelint "src/**/*.{css,svelte}"
Expand All @@ -60,7 +60,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: npm
- run: npm ci
- run: npm run check
Expand All @@ -72,7 +72,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: npm
- run: npm ci
- run: npm run test
Expand All @@ -84,7 +84,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: npm
- run: npm ci
- run: npx supabase db start
Expand All @@ -98,7 +98,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: npm
- run: npm ci
- run: npx supabase db start
Expand All @@ -115,7 +115,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: npm
- run: npm ci
- run: npx supabase link --project-ref $SUPABASE_PROJECT_ID
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: npm
- run: npm ci
- run: npx supabase link --project-ref $SUPABASE_PROJECT_ID
Expand Down
42 changes: 22 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
"prepare": "svelte-kit sync"
},
"engines": {
"node": ">=22"
"node": ">=24"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/js": "^9.21.0",
"@sveltejs/adapter-vercel": "^6.1.2",
"@sveltejs/adapter-vercel": "^6.2.0",
"@sveltejs/kit": "^2.49.0",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@types/web-app-manifest": "^1.0.9",
Expand Down
Loading