Skip to content
This repository was archived by the owner on Jun 9, 2025. It is now read-only.

Commit 2bfc644

Browse files
authored
chore: run CI on latest Node.js (#73)
1 parent 91e7c1a commit 2bfc644

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/release-please.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ jobs:
2323
if: ${{ steps.release.outputs.release_created }}
2424
- uses: actions/setup-node@v2
2525
with:
26-
node-version: '15'
26+
node-version: '*'
27+
check-latest: true
2728
registry-url: 'https://registry.npmjs.org'
2829
if: ${{ steps.release.outputs.release_created }}
2930
- run: npm publish

.github/workflows/workflow.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest, macOS-latest, windows-latest]
16-
node-version: [8.17.0, 15.x]
16+
node-version: [8.17.0, '*']
1717
exclude:
1818
- os: macOS-latest
1919
node-version: 8.17.0
@@ -27,11 +27,12 @@ jobs:
2727
uses: actions/setup-node@v2
2828
with:
2929
node-version: ${{ matrix.node-version }}
30+
check-latest: true
3031
- name: Install dependencies
3132
run: npm ci
3233
- name: Linting
3334
run: npm run format:ci
34-
if: "${{ matrix.node-version == '15.x' }}"
35+
if: "${{ matrix.node-version == '*' }}"
3536
- name: Tests
3637
run: npm run test:ci
3738
- name: Get test coverage flags

0 commit comments

Comments
 (0)