Skip to content

Commit

Permalink
ci(global): node versions as strings
Browse files Browse the repository at this point in the history
  • Loading branch information
JiPaix committed Oct 15, 2021
1 parent a172f1a commit 48711ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.11.1]
node-version: ["12.x", "14.x", "16.11.1"]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
- uses: actions/setup-node@v1
if: steps.version-updated.outputs.has-updated
with:
node-version: 16.11.1
node-version: "16.11.1"
registry-url: 'https://registry.npmjs.org'
- run: npm install
if: steps.version-updated.outputs.has-updated
Expand Down

0 comments on commit 48711ec

Please sign in to comment.