We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb4f85f commit 8d53788Copy full SHA for 8d53788
.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:
@@ -24,8 +24,6 @@ jobs:
24
- macos-latest
25
fail-fast: false
26
runs-on: ${{ matrix.os }}
27
- env:
28
- YARN_IGNORE_NODE: 1
29
steps:
30
- uses: actions/checkout@v4
31
@@ -41,9 +39,14 @@ jobs:
41
39
- name: Build and Typecov
42
40
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
+
+ - name: Codecov
+ if: ${{ matrix.node != 16}}
50
+ uses: codecov/codecov-action@v5
51
+ with:
52
+ token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments