Skip to content
Merged
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
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,13 @@ jobs:
- run: chmod +x target/debug/aisix
- uses: actions/setup-node@v6
with:
node-version: 20
# pnpm 11 requires Node 22.13 or newer — it imports `node:sqlite`
# for its store index. The job only passes on Node 20 because it
# happens not to reach that code path; any pnpm command that
# touches the store (a cache step, `pnpm store path`) fails with
# ERR_UNKNOWN_BUILTIN_MODULE. GitHub is also deprecating Node 20
# on its runners.
node-version: 22
- uses: pnpm/action-setup@v6
with:
# Matches the pnpm developers run locally. The harness's
Expand Down
Loading