From 9f8804f716c4800b2efbb62e9b4e5dcd0c664787 Mon Sep 17 00:00:00 2001 From: David Humphrey Date: Tue, 19 Oct 2021 16:58:00 -0400 Subject: [PATCH] Update actions/setup-node to 2.4.1, fix matrix syntax --- .github/workflows/node-js-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/node-js-ci.yml b/.github/workflows/node-js-ci.yml index 033ee1f..74c4fed 100644 --- a/.github/workflows/node-js-ci.yml +++ b/.github/workflows/node-js-ci.yml @@ -16,12 +16,12 @@ jobs: os: [ubuntu-latest, macos-latest, windows-latest] node: ['14', '16'] - name: Node ${{ matrix.node-version }} on ${{ matrix.os }} + name: Node ${{ matrix.node }} on ${{ matrix.os }} steps: - uses: actions/checkout@v2 - name: Test - uses: actions/setup-node@v2.1.5 + uses: actions/setup-node@v2.4.1 with: - node-version: ${{ matrix.node-version }} + node-version: ${{ matrix.node }} - run: npm install - run: npm test