Skip to content

Commit 8d53788

Browse files
committed
ci: enable codecov action
1 parent cb4f85f commit 8d53788

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

Diff for: .github/workflows/ci.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ concurrency:
99
cancel-in-progress: true
1010

1111
jobs:
12-
default:
12+
ci:
1313
name: Lint and Test with Node.js ${{ matrix.node }} on ${{ matrix.os }}
1414
strategy:
1515
matrix:
@@ -24,8 +24,6 @@ jobs:
2424
- macos-latest
2525
fail-fast: false
2626
runs-on: ${{ matrix.os }}
27-
env:
28-
YARN_IGNORE_NODE: 1
2927
steps:
3028
- uses: actions/checkout@v4
3129

@@ -41,9 +39,14 @@ jobs:
4139
- name: Build and Typecov
4240
run: yarn run-s build typecov
4341
env:
44-
EFF_NO_LINK_RULES: true
4542
PARSER_NO_WATCH: true
4643

4744
- name: Lint and Test
4845
if: ${{ matrix.node != 16}}
4946
run: yarn run-s lint test
47+
48+
- name: Codecov
49+
if: ${{ matrix.node != 16}}
50+
uses: codecov/codecov-action@v5
51+
with:
52+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)