Skip to content

Commit a6e1e9c

Browse files
richardlauMylesBorins
authored andcommitted
build: fix step name in GitHub Actions workflow
The CI workflow doesn't use the matrix strategy so there is no `${{ matrix.node-version }}` variable to use in the `Use Node.js` step names. PR-URL: #31323 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent 0379c31 commit a6e1e9c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/CI.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v2
10-
- name: Use Node.js ${{ matrix.node-version }}
10+
- name: Use Node.js 13
1111
uses: actions/setup-node@v1
1212
with:
1313
node-version: 13.x
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: windows-latest
2020
steps:
2121
- uses: actions/checkout@v2
22-
- name: Use Node.js ${{ matrix.node-version }}
22+
- name: Use Node.js 13
2323
uses: actions/setup-node@v1
2424
with:
2525
node-version: 13.x
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: macOS-latest
3434
steps:
3535
- uses: actions/checkout@v2
36-
- name: Use Node.js ${{ matrix.node-version }}
36+
- name: Use Node.js 13
3737
uses: actions/setup-node@v1
3838
with:
3939
node-version: 13.x
@@ -45,7 +45,7 @@ jobs:
4545
runs-on: ubuntu-latest
4646
steps:
4747
- uses: actions/checkout@v2
48-
- name: Use Node.js ${{ matrix.node-version }}
48+
- name: Use Node.js 10
4949
uses: actions/setup-node@v1
5050
with:
5151
node-version: 10.x
@@ -61,7 +61,7 @@ jobs:
6161
runs-on: ubuntu-latest
6262
steps:
6363
- uses: actions/checkout@v2
64-
- name: Use Node.js ${{ matrix.node-version }}
64+
- name: Use Node.js 10
6565
uses: actions/setup-node@v1
6666
with:
6767
node-version: 10.x
@@ -71,7 +71,7 @@ jobs:
7171
runs-on: ubuntu-latest
7272
steps:
7373
- uses: actions/checkout@v2
74-
- name: Use Node.js ${{ matrix.node-version }}
74+
- name: Use Node.js 10
7575
uses: actions/setup-node@v1
7676
with:
7777
node-version: 10.x

0 commit comments

Comments
 (0)