Skip to content
Open
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
14 changes: 5 additions & 9 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4.2.0
- name: Setup Node and pnpm
uses: silverhand-io/actions-node-pnpm-run-steps@v5
with:
version: 10

- uses: actions/setup-node@v6
with:
node-version: 22.14.0
registry-url: https://registry.npmjs.org/
cache: 'pnpm'
node-version: ^22.14.0
Copy link

Copilot AI Jan 19, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The node version specification has changed from an exact version (22.14.0) to a caret range (^22.14.0). This allows any version 22.x.x >= 22.14.0, which could lead to inconsistent builds across different workflow runs as new Node versions are released. Consider using an exact version for reproducible builds.

Suggested change
node-version: ^22.14.0
node-version: 22.14.0

Copilot uses AI. Check for mistakes.
pnpm-version: 10

- name: Build
run: pnpm i && pnpm build
run: pnpm build

- name: Deploy
uses: cloudflare/wrangler-action@v3
Expand Down
14 changes: 5 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4.2.0
- name: Setup Node and pnpm
uses: silverhand-io/actions-node-pnpm-run-steps@v5
with:
version: 10

- uses: actions/setup-node@v6
with:
node-version: 22.14.0
registry-url: https://registry.npmjs.org/
cache: 'pnpm'
node-version: ^22.14.0
Copy link

Copilot AI Jan 19, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The node version specification has changed from an exact version (22.14.0) to a caret range (^22.14.0). This allows any version 22.x.x >= 22.14.0, which could lead to inconsistent builds across different workflow runs as new Node versions are released. Consider using an exact version for reproducible builds.

Suggested change
node-version: ^22.14.0
node-version: 22.14.0

Copilot uses AI. Check for mistakes.
pnpm-version: 10

- name: Build
run: pnpm i && pnpm build
run: pnpm build

- name: Test
run: pnpm test
Loading