Skip to content

Commit

Permalink
fix: github action node version
Browse files Browse the repository at this point in the history
  • Loading branch information
dominickolbe committed Sep 10, 2021
1 parent fb3be05 commit b17d2d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
test:
name: Test on Node.js ${{ matrix.node_version }} and ${{ matrix.os }}
name: Test on Node.js ${{ matrix.node-version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}

strategy:
Expand All @@ -20,10 +20,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node_version }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}
node-version: ${{ matrix.node-version }}

- name: Install dependencies, build and test
run: |
Expand Down

0 comments on commit b17d2d4

Please sign in to comment.