Skip to content

Commit

Permalink
fix node version
Browse files Browse the repository at this point in the history
since currently setup-node action does not  return actual version number installed
  • Loading branch information
santino committed Jan 24, 2022
1 parent 491712c commit 7e68e78
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [lts/*, node]
node-version: [16/*, 17/*]

steps:
- name: Checkout repository
Expand All @@ -37,7 +37,7 @@ jobs:

strategy:
matrix:
node-version: [lts/*, node]
node-version: [16/*, 17/*]

steps:
- name: Checkout repository
Expand All @@ -60,7 +60,7 @@ jobs:
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
flag-name: run-node-${{node -v}}
flag-name: run-node-${{ matrix.node-version }}
parallel: true

coveralls-finished:
Expand All @@ -79,7 +79,7 @@ jobs:

strategy:
matrix:
node-version: [lts/*, node]
node-version: [16/*, 17/*]

steps:
- name: Checkout repository
Expand Down

0 comments on commit 7e68e78

Please sign in to comment.