Skip to content

Commit 41489d6

Browse files
committed
Tweak CI
1 parent dac5613 commit 41489d6

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@ on:
33
push:
44
branches:
55
- main
6-
tags:
7-
- 'v*'
86
pull_request:
97
paths-ignore:
108
- '*.md'
119
concurrency:
1210
group: ${{ github.workflow }}-${{ github.ref }}
13-
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
11+
cancel-in-progress: true
1412
jobs:
1513
nodejs:
1614
name: Node.js
@@ -21,14 +19,15 @@ jobs:
2119
node-version: [^22.20, ^24.12, ^25]
2220
os: [ubuntu-latest, windows-latest]
2321
steps:
24-
- uses: actions/checkout@v4
25-
- uses: actions/setup-node@v4
22+
- uses: actions/checkout@v6
23+
- uses: actions/setup-node@v6
2624
with:
2725
node-version: ${{ matrix.node-version }}
2826
- run: npm install --no-audit
2927
- run: npm test
30-
- uses: codecov/codecov-action@v4
28+
- uses: codecov/codecov-action@v5
3129
with:
30+
disable_search: true
3231
files: coverage/lcov.info
3332
name: ${{ matrix.os }}/${{ matrix.node-version }}
3433
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)