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
9 changes: 9 additions & 0 deletions .claude/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"permissions": {
"allow": [
"Bash(node -e \"console.log\\(require\\('./package.json'\\).engines || '\\(none\\)'\\)\")",
"Bash(node -e \"const j = require\\('jose'\\); console.log\\('require\\(jose\\) OK on', process.version, '— exports:', Object.keys\\(j\\).length\\)\")",
"Bash(node -e \"console.log\\(JSON.stringify\\(require\\('./package.json'\\).engines\\)\\)\")"
]
}
}
2 changes: 1 addition & 1 deletion .github/workflows/backup.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Zenith Data Backup
name: PBCTF Data Backup

on:
schedule:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 24
cache: "npm"

- name: Install dependencies
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Lint

on:
push:
branches: ['*']
branches: ["*"]
pull_request:
branches: ['*']
branches: ["*"]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -21,8 +21,8 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
node-version: 24
cache: "npm"

- name: Install dependencies
run: npm ci
Expand Down
4 changes: 4 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,9 @@
command = "npm run build"
publish = ".next"

[build.environment]
NODE_VERSION = "22"
AWS_LAMBDA_JS_RUNTIME = "nodejs22.x"

[[plugins]]
package = "@netlify/plugin-nextjs"
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"name": "nextjs",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "next dev",
"build": "next build",
Expand Down
Loading