Skip to content

Commit 8fe6417

Browse files
committedJun 5, 2024·
ci: skip extra checks
1 parent 6f3bd76 commit 8fe6417

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828
node-version: ${{ matrix.node }}
2929
cache: "pnpm"
3030
- uses: oven-sh/setup-bun@v1
31-
if: ${{ matrix.os != 'windows-latest' }}
31+
if: ${{ matrix.os != 'windows-latest' && matrix.node == 20 }}
3232
with:
3333
bun-version: latest
3434
- run: pnpm install
3535
- run: pnpm lint
36-
if: ${{ matrix.os != 'windows-latest' }}
36+
if: ${{ matrix.os != 'windows-latest' && matrix.node == 20 }}
3737
- run: pnpm build
3838
- run: pnpm vitest run --coverage
3939
- run: pnpm test:bun --coverage
40-
if: ${{ matrix.os != 'windows-latest' }}
40+
if: ${{ matrix.os != 'windows-latest' && matrix.node == 20 }}
4141
# - name: Coverage
4242
# uses: codecov/codecov-action@v1

0 commit comments

Comments
 (0)
Please sign in to comment.