Skip to content

Commit

Permalink
ci: update CI steps to use node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
onebytegone committed May 2, 2024
1 parent 1f8f5fe commit 3ce2b16
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 @@ -7,11 +7,11 @@ jobs:
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history
-
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: npm i -g [email protected]
Expand All @@ -25,10 +25,10 @@ jobs:
matrix:
node-version: [ 16, 20, 'lts/*', 'latest' ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
-
name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm i -g [email protected]
Expand Down

0 comments on commit 3ce2b16

Please sign in to comment.