Skip to content

Commit 1adc1bd

Browse files
committed
ci: node 22 for pnpm, drop windows (unix-only)
1 parent e37df4c commit 1adc1bd

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20+
# Windows omitted: the socket trigger (trigger.rs) is Unix-only, so
21+
# the app doesn't compile there yet. Tracked as Phase 5 work.
2022
platform:
2123
- { os: ubuntu-latest, label: ubuntu }
2224
- { os: macos-latest, label: macos }
23-
- { os: windows-latest, label: windows }
2425

2526
steps:
2627
- uses: actions/checkout@v4
@@ -52,7 +53,7 @@ jobs:
5253

5354
- uses: actions/setup-node@v4
5455
with:
55-
node-version: 20
56+
node-version: 22
5657
cache: pnpm
5758

5859
- name: Cargo cache

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
contents: write
1212
strategy:
1313
fail-fast: false
14+
# Windows omitted: the socket trigger (trigger.rs) is Unix-only, so the
15+
# app doesn't compile there yet. Tracked as Phase 5 work.
1416
matrix:
1517
include:
1618
- platform: macos-latest
@@ -19,8 +21,6 @@ jobs:
1921
args: --target x86_64-apple-darwin
2022
- platform: ubuntu-22.04
2123
args: ''
22-
- platform: windows-latest
23-
args: ''
2424

2525
runs-on: ${{ matrix.platform }}
2626
steps:
@@ -48,7 +48,7 @@ jobs:
4848

4949
- uses: actions/setup-node@v4
5050
with:
51-
node-version: 20
51+
node-version: 22
5252
cache: pnpm
5353

5454
- uses: dtolnay/rust-toolchain@stable

0 commit comments

Comments
 (0)