Skip to content

Commit

Permalink
Merge pull request #318 from magjac/upgrade-nodejs-in-ci
Browse files Browse the repository at this point in the history
Upgrade to Node.js 20.x in CI
  • Loading branch information
magjac authored Aug 17, 2024
2 parents 0d875e6 + 171a023 commit 0c0786d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on: # yamllint disable-line rule:truthy
push:
pull_request:
branches: [master]
workflow_dispatch:

jobs:
build:
Expand All @@ -13,12 +14,12 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x]
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
Expand Down

0 comments on commit 0c0786d

Please sign in to comment.