We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb4f85f commit 2502a93Copy full SHA for 2502a93
.github/workflows/ci.yml
@@ -9,7 +9,7 @@ concurrency:
9
cancel-in-progress: true
10
11
jobs:
12
- default:
+ ci:
13
name: Lint and Test with Node.js ${{ matrix.node }} on ${{ matrix.os }}
14
strategy:
15
matrix:
@@ -41,9 +41,14 @@ jobs:
41
- name: Build and Typecov
42
run: yarn run-s build typecov
43
env:
44
- EFF_NO_LINK_RULES: true
45
PARSER_NO_WATCH: true
46
47
- name: Lint and Test
48
if: ${{ matrix.node != 16}}
49
run: yarn run-s lint test
+
50
+ - name: Codecov
51
+ if: ${{ matrix.node != 16}}
52
+ uses: codecov/codecov-action@v5
53
+ with:
54
+ token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments