Skip to content

Commit 3793a16

Browse files
committed
fix: remove duplicate pnpm version from workflows, update to Node.js 24
Signed-off-by: Todd Palmer <todd@betterdata.co>
1 parent d2d1207 commit 3793a16

3 files changed

Lines changed: 9 additions & 10 deletions

File tree

.github/workflows/boundary-check.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@ on:
55
paths:
66
- "packages/**"
77

8+
env:
9+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
10+
811
jobs:
912
check:
1013
runs-on: ubuntu-latest
1114
steps:
1215
- uses: actions/checkout@v4
1316
- uses: pnpm/action-setup@v4
14-
with:
15-
version: 9
1617
- uses: actions/setup-node@v4
1718
with:
1819
node-version: 20

.github/workflows/ci.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@ on:
66
pull_request:
77
branches: [main]
88

9+
env:
10+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
11+
912
jobs:
1013
build-and-test:
1114
runs-on: ubuntu-latest
1215
steps:
1316
- uses: actions/checkout@v4
1417
- uses: pnpm/action-setup@v4
15-
with:
16-
version: 9
1718
- uses: actions/setup-node@v4
1819
with:
1920
node-version: 20
@@ -33,8 +34,6 @@ jobs:
3334
steps:
3435
- uses: actions/checkout@v4
3536
- uses: pnpm/action-setup@v4
36-
with:
37-
version: 9
3837
- uses: actions/setup-node@v4
3938
with:
4039
node-version: 20
@@ -47,8 +46,6 @@ jobs:
4746
steps:
4847
- uses: actions/checkout@v4
4948
- uses: pnpm/action-setup@v4
50-
with:
51-
version: 9
5249
- uses: actions/setup-node@v4
5350
with:
5451
node-version: 20

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
push:
55
branches: [main]
66

7+
env:
8+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
9+
710
jobs:
811
release:
912
if: contains(github.event.head_commit.message, 'chore(release)')
@@ -14,8 +17,6 @@ jobs:
1417
steps:
1518
- uses: actions/checkout@v4
1619
- uses: pnpm/action-setup@v4
17-
with:
18-
version: 9
1920
- uses: actions/setup-node@v4
2021
with:
2122
node-version: 20

0 commit comments

Comments
 (0)