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 225c450 commit 298cd8dCopy full SHA for 298cd8d
.github/workflows/ci.yml
@@ -9,23 +9,24 @@ jobs:
9
strategy:
10
matrix:
11
node: [22]
12
- os: [ubuntu-latest, windows-latest]
+ os: [ubuntu-latest]
13
14
runs-on: ${{ matrix.os }}
15
name: Run Tests - Node v${{ matrix.node }} / ${{ matrix.os }}
16
17
steps:
18
- uses: actions/checkout@v4
19
+ - uses: pnpm/action-setup@v4
20
- uses: actions/setup-node@v4
21
with:
22
cache: 'pnpm'
- node-version: 22
23
+ node-version: ${{ matrix.node-version }}
24
25
- name: Install dependencies
26
run: pnpm install
27
28
- name: Run tests
- run: >
29
+ run: |
30
cd packages/tailwindcss-language-server &&
31
pnpm run build &&
32
pnpm test
0 commit comments