Skip to content

Commit 3294bd3

Browse files
committed
Move our self-lint to a separate job so it doesn't block tests
1 parent 8ff0b71 commit 3294bd3

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

.github/workflows/ci.yml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,22 @@ on:
1010
branches: [ master ]
1111

1212
jobs:
13-
build:
13+
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+
with:
22+
node-version: 22.x
23+
cache: 'pnpm'
1424

25+
- run: pnpm install
26+
- run: pnpm lint
27+
28+
build:
1529
runs-on: ${{ matrix.os }}-latest
1630

1731
strategy:
@@ -31,7 +45,4 @@ jobs:
3145
cache: 'pnpm'
3246

3347
- run: pnpm install
34-
35-
- run: pnpm lint
36-
3748
- run: pnpm test:coverage --runInBand

0 commit comments

Comments
 (0)