Skip to content

Commit

Permalink
Fix issue with node version in ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nev21 committed Oct 24, 2023
1 parent 3d7a098 commit 58cf085
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:

strategy:
matrix:
node-version: [ 12, 14, 16, 18 ]
node: [ 12, 14, 16, 18 ]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node_version }}
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
node-version: ${{ matrix.node }}
- run: npm install
- name: Build
run: npm run build --verbose
Expand Down

0 comments on commit 58cf085

Please sign in to comment.