File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Linter
2+
3+ on : push
4+
5+ jobs :
6+ linter :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - uses : actions/checkout@v4
10+ - name : Set up Node.js 23.x
11+ uses : actions/setup-node@v4
12+ with :
13+ node-version : 23.x
14+
15+ - name : Install dependencies
16+ run : yarn install --dev
17+
18+ - name : Lint files
19+ run : yarn run lint
Original file line number Diff line number Diff line change @@ -3,22 +3,23 @@ name: Tests
33on : push
44
55jobs :
6- build :
6+ tests :
77 runs-on : ubuntu-latest
88 steps :
99 - uses : actions/checkout@v4
1010 - name : Set up Node.js 23.x
1111 uses : actions/setup-node@v4
1212 with :
1313 node-version : 23.x
14+
1415 - name : Install dependencies
1516 run : yarn install --dev
16- - name : Lint files
17- run : yarn run lint
17+
1818 - name : Run tests
1919 run : yarn run test
2020 env :
2121 CI : true
22+
2223 - name : Upload coverage
2324 uses : codecov/codecov-action@v5
2425 with :
You can’t perform that action at this time.
0 commit comments