Skip to content

Commit

Permalink
fix(ci): Fix node version
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
  • Loading branch information
marcelklehr committed Dec 7, 2023
1 parent 4bfcdb4 commit a327e76
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ jobs:

strategy:
matrix:
node-versions: [20.x]
node-version: [20.x]
npm-version: [10.x]

name: node${{ matrix.node-versions }}
steps:
- uses: actions/checkout@v2

- name: Set up node ${{ matrix.node-versions }}
- name: Set up node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-versions }}
node-version: ${{ matrix.node-version }}

- name: Set up npm ${{ matrix.npm-version }}
run: npm i -g npm@"${{ matrix.npm-version }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# do not stop on another job's failure
fail-fast: false
matrix:
node-versions: [20.x]
node-version: [20.x]
npm-version: [10.x]
server-version: ['27']
app-version: ['stable']
Expand Down

0 comments on commit a327e76

Please sign in to comment.