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 10b1e76 commit 3072ca5Copy full SHA for 3072ca5
.github/workflows/ci.yml
@@ -26,8 +26,11 @@ jobs:
26
- name: Install dependencies
27
run: pnpm install
28
29
- - name: Run tests
+ - name: Run service tests
30
+ working-directory: packages/tailwindcss-language-service
31
+ run: pnpm run build && pnpm run test
32
+
33
+ - name: Run server tests
34
+ working-directory: packages/tailwindcss-language-server
35
run: |
- cd packages/tailwindcss-language-server &&
- pnpm run build &&
- pnpm run test
36
+ pnpm run build && pnpm run test
0 commit comments