Skip to content

Commit d034a66

Browse files
committed
test: fix GitHub Actions
1 parent 7c9cc1c commit d034a66

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Use Node.js
3838
uses: actions/setup-node@v4
3939
with:
40-
node-version: $NODE_LATEST
40+
node-version: ${{ env.NODE_LATEST }}
4141
cache: 'npm'
4242
cache-dependency-path: 'package.json'
4343
- name: Build docs

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
23-
node-version: [$NODE_LTE, $NODE_LATEST]
23+
node-version: [${{ env.NODE_LTE }}, ${{ env.NODE_LATEST }}]
2424
os: [ubuntu-latest, windows-latest, macos-latest]
2525

2626
runs-on: ${{ matrix.os }}
@@ -126,7 +126,7 @@ jobs:
126126

127127
- uses: actions/setup-node@v4
128128
with:
129-
node-version: $NODE_LATEST
129+
node-version: ${{ env.NODE_LATEST }}
130130
cache: 'npm'
131131
cache-dependency-path: 'package.json'
132132

0 commit comments

Comments
 (0)