Skip to content

Commit 47212eb

Browse files
committed
try to fix ci
1 parent 91a3d11 commit 47212eb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/nodejs.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [ubuntu-latest]
26-
node-version: [lts/*]
26+
node-version: ["lts/*"]
2727

2828
runs-on: ${{ matrix.os }}
2929

@@ -37,7 +37,7 @@ jobs:
3737
fetch-depth: 0
3838

3939
- name: Use Node.js ${{ matrix.node-version }}
40-
uses: actions/setup-node@v3
40+
uses: actions/setup-node@v4
4141
with:
4242
node-version: ${{ matrix.node-version }}
4343
cache: "yarn"
@@ -54,7 +54,7 @@ jobs:
5454
strategy:
5555
matrix:
5656
os: [ubuntu-latest, windows-latest, macos-latest]
57-
node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x]
57+
node-version: [10, 12, 14, 16, 18, 20]
5858
webpack-version: [latest]
5959

6060
runs-on: ${{ matrix.os }}
@@ -71,9 +71,9 @@ jobs:
7171
- uses: actions/checkout@v3
7272

7373
- name: Use Node.js ${{ matrix.node-version }}
74-
uses: actions/setup-node@v3
74+
uses: actions/setup-node@v4
7575
with:
76-
node-version: ${{ matrix.node-version }}
76+
node-version: "${{ matrix.node-version }}"
7777
cache: "yarn"
7878

7979
- name: Install dependencies

0 commit comments

Comments
 (0)