Skip to content

Commit

Permalink
node 20 + deps
Browse files Browse the repository at this point in the history
  • Loading branch information
sb-benohe committed Oct 24, 2023
1 parent c3b8da4 commit 2a1d116
Show file tree
Hide file tree
Showing 3 changed files with 176 additions and 153 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Use Node.js 14.x
uses: actions/setup-node@v2-beta
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 20.x

- name: Cache node modules
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/unit_test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version: [14, 16]
version: [20, 21, 18]
name: Checkout, install, lint, build and test with coverage
runs-on: ubuntu-latest

Expand Down Expand Up @@ -91,13 +91,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Download coverage artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: coverage
- name: Upload code coverage to Codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
file: lcov.info
fail_ci_if_error: true
Loading

0 comments on commit 2a1d116

Please sign in to comment.