Skip to content

Commit 6eabbe5

Browse files
authored
Opt GitHub Actions JS actions into Node 24 (#54)
Closes #53 Adds `FORCE_JAVASCRIPT_ACTIONS_TO_NODE24` to CI, Playwright, and Release workflows per GitHub guidance for Node 20 deprecation on JavaScript-based actions. Made with [Cursor](https://cursor.com)
1 parent 74d6b04 commit 6eabbe5

3 files changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
branches: [main]
66
types: [opened, synchronize, reopened]
77

8+
env:
9+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
10+
811
jobs:
912
lint-and-build:
1013
runs-on: ubuntu-latest

.github/workflows/playwright.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
branches: [main, master]
55
pull_request:
66
branches: [main, master]
7+
8+
env:
9+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
10+
711
jobs:
812
test:
913
timeout-minutes: 60

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ on:
2222
default: false
2323
type: boolean
2424

25+
env:
26+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
27+
2528
jobs:
2629
changeset_check:
2730
permissions:

0 commit comments

Comments
 (0)