From 042089a7757925d7fb2fe9dcb57ef5f16549e6ff Mon Sep 17 00:00:00 2001 From: Robin Malfait Date: Sat, 15 Oct 2022 23:51:57 +0200 Subject: [PATCH] split build and linking step --- .github/workflows/nodejs.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 3468967a3057..30c16a31bc51 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -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