We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ff0b71 commit 3294bd3Copy full SHA for 3294bd3
.github/workflows/ci.yml
@@ -10,8 +10,22 @@ on:
10
branches: [ master ]
11
12
jobs:
13
- build:
+ self-lint:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - uses: pnpm/action-setup@v4
18
+ with:
19
+ run_install: false
20
+ - uses: actions/setup-node@v4
21
22
+ node-version: 22.x
23
+ cache: 'pnpm'
24
25
+ - run: pnpm install
26
+ - run: pnpm lint
27
+
28
+ build:
29
runs-on: ${{ matrix.os }}-latest
30
31
strategy:
@@ -31,7 +45,4 @@ jobs:
45
cache: 'pnpm'
32
46
33
47
- run: pnpm install
34
-
35
- - run: pnpm lint
36
37
48
- run: pnpm test:coverage --runInBand
0 commit comments