Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

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

steps:
- uses: actions/checkout@v5
Expand All @@ -52,12 +52,12 @@ jobs:
run: npm run test:coverage

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
if: matrix.node-version == '18.x'
uses: codecov/codecov-action@v5
if: matrix.node-version == '20.x'
continue-on-error: true
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage/lcov.info
files: ./coverage/lcov.info
flags: unittests
name: codecov-umbrella
fail_ci_if_error: false
Expand All @@ -68,10 +68,10 @@ jobs:
steps:
- uses: actions/checkout@v5

- name: Use Node.js 18.x
- name: Use Node.js 20.x
uses: actions/setup-node@v5
with:
node-version: 18.x
node-version: 20.x
cache: 'npm'

- name: Install dependencies
Expand All @@ -89,10 +89,10 @@ jobs:
with:
fetch-depth: 0

- name: Use Node.js 18.x
- name: Use Node.js 20.x
uses: actions/setup-node@v5
with:
node-version: 18.x
node-version: 20.x
cache: 'npm'

- name: Install dependencies
Expand Down
Loading