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 dd79be3 commit 8656601Copy full SHA for 8656601
.github/workflows/ci.yml
@@ -0,0 +1,33 @@
1
+name: Run Tests
2
+on:
3
+ pull_request:
4
+ branches:
5
+ - master
6
+
7
+jobs:
8
+ tests:
9
+ strategy:
10
+ matrix:
11
+ node: [18, 20, 22]
12
+ os: [ubuntu-latest, windows-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: actions/setup-node@v4
20
+ with:
21
+ node-version: 22
22
+ cache: 'npm'
23
+ registry-url: 'https://registry.npmjs.org'
24
25
+ - name: Install dependencies
26
+ run: npm ci
27
28
+ - name: Run tests
29
+ run: >
30
+ cd packages/tailwindcss-language-server &&
31
+ npm run build &&
32
+ npm run test:prepare &&
33
+ npm test
0 commit comments