Skip to content

Commit 298cd8d

Browse files
committed
wip
1 parent 225c450 commit 298cd8d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,24 @@ jobs:
99
strategy:
1010
matrix:
1111
node: [22]
12-
os: [ubuntu-latest, windows-latest]
12+
os: [ubuntu-latest]
1313

1414
runs-on: ${{ matrix.os }}
1515
name: Run Tests - Node v${{ matrix.node }} / ${{ matrix.os }}
1616

1717
steps:
1818
- uses: actions/checkout@v4
19+
- uses: pnpm/action-setup@v4
1920
- uses: actions/setup-node@v4
2021
with:
2122
cache: 'pnpm'
22-
node-version: 22
23+
node-version: ${{ matrix.node-version }}
2324

2425
- name: Install dependencies
2526
run: pnpm install
2627

2728
- name: Run tests
28-
run: >
29+
run: |
2930
cd packages/tailwindcss-language-server &&
3031
pnpm run build &&
3132
pnpm test

0 commit comments

Comments
 (0)