Skip to content

Commit a85b516

Browse files
committed
fix: add FORCE_JAVASCRIPT_ACTIONS_TO_NODE24 to suppress warnings
- Add environment variable to both CI and release workflows - This suppresses Node.js 20 deprecation warnings
1 parent e211a22 commit a85b516

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/ci.yml

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

9+
env:
10+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
11+
912
jobs:
1013
test:
1114
runs-on: ubuntu-latest

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
tags:
66
- 'v*'
77

8+
env:
9+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
10+
811
jobs:
912
build:
1013
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)