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 f44e4af commit 94131e7Copy full SHA for 94131e7
.github/workflows/ci.yml
@@ -10,9 +10,10 @@ jobs:
10
matrix:
11
node: [22]
12
os: [ubuntu-latest, macos-latest]
13
+ shard: [1/3, 2/3, 3/3]
14
15
runs-on: ${{ matrix.os }}
- name: Run Tests - Node v${{ matrix.node }} / ${{ matrix.os }}
16
+ name: Run Tests - Node v${{ matrix.node }} / ${{ matrix.os }} / ${{ matrix.shard }}
17
18
steps:
19
- uses: actions/checkout@v4
@@ -29,4 +30,4 @@ jobs:
29
30
run: |
31
cd packages/tailwindcss-language-server &&
32
pnpm run build &&
- pnpm test hover.test
33
+ pnpm run test --shard ${{ matrix.shard }}
0 commit comments