Skip to content

Commit

Permalink
Introduce Node.js 20 in the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kelson42 committed Aug 19, 2023
1 parent eb9fc5c commit 9b33665
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

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

steps:

Expand Down Expand Up @@ -50,6 +50,6 @@ jobs:

- name: Uploading Codecov stats
uses: codecov/codecov-action@v3
if: ${{ matrix.node-version == '18.x' }}
if: ${{ matrix.node-version == '18' }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Use Node.js 18.x
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: "18.x"
node-version: "18"
registry-url: "https://registry.npmjs.org"

- run: npm ci
Expand Down

0 comments on commit 9b33665

Please sign in to comment.