Skip to content

Commit 042089a

Browse files
committed
split build and linking step
1 parent 74df4c3 commit 042089a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/nodejs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ jobs:
4343
env:
4444
CI: true
4545

46-
- name: Link and build Tailwind CSS
47-
run: |
48-
npm run swcify
49-
ln -nfs `pwd` node_modules/tailwindcss
46+
- name: Build Tailwind CSS
47+
run: npm run swcify
5048
env:
5149
CI: true
5250

5351
- name: Test
54-
run: npm test
52+
run: |
53+
ln -nfs `pwd` node_modules/tailwindcss # So that Prettier can use the local version
54+
npm test
5555
env:
5656
CI: true

0 commit comments

Comments
 (0)