split build and linking step

This commit is contained in:
Robin Malfait 2022-10-15 23:51:57 +02:00
parent 74df4c3980
commit 042089a775
No known key found for this signature in database
GPG Key ID: 92F53D68B9041AFE

View File

@ -43,14 +43,14 @@ jobs:
env:
CI: true
- name: Link and build Tailwind CSS
run: |
npm run swcify
ln -nfs `pwd` node_modules/tailwindcss
- name: Build Tailwind CSS
run: npm run swcify
env:
CI: true
- name: Test
run: npm test
run: |
ln -nfs `pwd` node_modules/tailwindcss # So that Prettier can use the local version
npm test
env:
CI: true