We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2502a93 commit 5964453Copy full SHA for 5964453
.github/workflows/ci.yml
@@ -14,7 +14,6 @@ jobs:
14
strategy:
15
matrix:
16
node:
17
- - 16
18
- 18
19
- 20
20
- 22
@@ -24,8 +23,6 @@ jobs:
24
23
- 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
@@ -38,17 +35,14 @@ jobs:
38
35
- name: Install Dependencies
39
36
run: yarn --immutable
40
37
41
- - name: Build and Typecov
42
- run: yarn run-s build typecov
+ - name: Build, Lint and Test
+ run: |
+ yarn build
+ yarn run-p lint test typecov
43
env:
44
PARSER_NO_WATCH: true
45
46
- - name: Lint and Test
47
- if: ${{ matrix.node != 16}}
48
- run: yarn run-s lint test
49
-
50
- name: Codecov
51
52
uses: codecov/codecov-action@v5
53
with:
54
token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments