Skip to content

Commit 8d6a54c

Browse files
committed
Debug
1 parent ee440f1 commit 8d6a54c

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,26 +26,29 @@ jobs:
2626
- name: Lint
2727
run: pnpm run lint
2828

29+
- name: Format
30+
run: pnpm run format
31+
2932
- name: Typecheck
3033
run: pnpm run typecheck
3134

3235
test:
33-
name: Node.js ${{ matrix.node }} on ${{ matrix.os.name }}
36+
name: Test (Node.js ${{ matrix.node }} on ${{ matrix.os.name }})
3437
runs-on: ${{ matrix.os.version }}
3538
strategy:
3639
fail-fast: false
3740
matrix:
3841
node:
3942
- 20
40-
- 22
41-
- 24
43+
#- 22
44+
#- 24
4245
os:
43-
- name: Ubuntu
44-
version: ubuntu-latest
46+
# - name: Ubuntu
47+
# version: ubuntu-latest
4548
- name: Windows
4649
version: windows-latest
47-
- name: macOS
48-
version: macOS-latest
50+
# - name: macOS
51+
# version: macOS-latest
4952
steps:
5053
- name: Checkout repository
5154
uses: actions/checkout@v5
@@ -55,6 +58,9 @@ jobs:
5558
with:
5659
node-version: ${{ matrix.node }}
5760

61+
- name: Debug
62+
run: ls -alh tests/node_modules/.bin
63+
5864
- name: Test
5965
run: pnpm run test:all --coverage
6066

0 commit comments

Comments
 (0)