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 74df4c3 commit 042089aCopy full SHA for 042089a
.github/workflows/nodejs.yml
@@ -43,14 +43,14 @@ jobs:
43
env:
44
CI: true
45
46
- - name: Link and build Tailwind CSS
47
- run: |
48
- npm run swcify
49
- ln -nfs `pwd` node_modules/tailwindcss
+ - name: Build Tailwind CSS
+ run: npm run swcify
50
51
52
53
- name: Test
54
- run: npm test
+ run: |
+ ln -nfs `pwd` node_modules/tailwindcss # So that Prettier can use the local version
+ npm test
55
56
0 commit comments