Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions .github/workflows/tests-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
show-progress: false
- uses: actions/setup-node@v6
with:
node-version: 20
node-version: 24
- run: npm clean-install && npm audit --production

# STEP 2 - basic unit tests
Expand All @@ -41,7 +41,7 @@ jobs:
needs: [audit]
strategy:
matrix:
node: [16, 18, 20]
node: [20, 22, 24]
steps:
- name: Checkout repository
uses: actions/checkout@v6
Expand All @@ -64,7 +64,7 @@ jobs:
uses: VeryGoodOpenSource/very_good_coverage@v3
with:
path: './coverage/lcov.info'
min_coverage: 95
min_coverage: 98

# STEP 3 - Integration tests

Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
show-progress: false
- uses: actions/setup-node@v6
with:
node-version: 16
node-version: 24
registry-url: https://registry.npmjs.org/
- run: npm clean-install
- run: npm publish --dry-run
Expand All @@ -146,7 +146,7 @@ jobs:
- uses: actions/setup-node@v6
with:
# we always publish targeting the lowest supported node version
node-version: 16
node-version: 24
registry-url: $registry-url(npm)
- run: npm clean-install
- run: npm publish --dry-run
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: setup node
uses: actions/setup-node@v6
with:
node-version: 20
node-version: 24
cache: npm
- run: npm clean-install
- run: npm run lint
Expand All @@ -37,7 +37,7 @@ jobs:
needs: [lint]
strategy:
matrix:
node: [16, 18, 20, 22]
node: [20, 22, 24]
steps:
- name: Checkout repository
uses: actions/checkout@v6
Expand All @@ -59,4 +59,4 @@ jobs:
uses: VeryGoodOpenSource/very_good_coverage@v3
with:
path: './coverage/lcov.info'
min_coverage: 95
min_coverage: 98