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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020
with:
node-version: 20
node-version: 26
cache: 'npm'

- name: Install dependencies
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020
with:
node-version: 20
node-version: 26
cache: 'npm'

- name: Install dependencies
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020
with:
node-version: 20
node-version: 26
cache: 'npm'

- name: Install dependencies
Expand Down
6 changes: 4 additions & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,10 @@ The identity community will appreciate a tool that clearly understands their wor

## Deployment

- **Cloudflare Pages** — connected to this GitHub repo; merges to `main` auto-deploy
- Build command: `npm run build`
- **Cloudflare Pages** — direct upload, **not** git-connected. The Pages project has no repo connection and no build configuration; Cloudflare never runs a build.
- The `deploy` job in `.github/workflows/ci.yml` builds and uploads on every push to `main`: `npm ci` → `npm run build` → `wrangler pages deploy .svelte-kit/cloudflare --project-name=samlguy`. GitHub Actions is therefore the toolchain that produces the production artifact, so its `node-version` is a production-path setting, not just CI hygiene.
- Build command: `npm run build` (run in Actions)
- Output directory: `.svelte-kit/cloudflare`
- Cloudflare Worker API routes deploy automatically alongside the Pages site via the adapter
- Runtime compatibility date is set in the Pages project settings (currently 2026-05-11), not in a `wrangler.toml` — there is no wrangler config file in the repo
- `CLOUDFLARE_API_TOKEN` and `CLOUDFLARE_ACCOUNT_ID` stored as GitHub repository secrets; token is scoped to Cloudflare Pages only
Loading
Loading