From b772b9ab328cdc3185db855293b37daab26b51ef Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Sun, 12 Jan 2020 03:06:52 -0500 Subject: [PATCH] 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: https://github.com/nodejs/node/pull/31323 Reviewed-By: Ruben Bridgewater Reviewed-By: Anna Henningsen Reviewed-By: Jiawen Geng Reviewed-By: Rich Trott Reviewed-By: Colin Ihrig --- .github/workflows/CI.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index e63b95c0c0e658..006b7ebdd30c01 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 13 uses: actions/setup-node@v1 with: node-version: 13.x @@ -19,7 +19,7 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 13 uses: actions/setup-node@v1 with: node-version: 13.x @@ -33,7 +33,7 @@ jobs: runs-on: macOS-latest steps: - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 13 uses: actions/setup-node@v1 with: node-version: 13.x @@ -45,7 +45,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 10 uses: actions/setup-node@v1 with: node-version: 10.x @@ -61,7 +61,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 10 uses: actions/setup-node@v1 with: node-version: 10.x @@ -71,7 +71,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 10 uses: actions/setup-node@v1 with: node-version: 10.x