Skip to content

Commit

Permalink
split build and linking step
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinMalfait committed Oct 15, 2022
1 parent 74df4c3 commit 042089a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/nodejs.yml
Expand Up @@ -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

0 comments on commit 042089a

Please sign in to comment.