From 662779c8c77df941325e6d1f5c25007f36097dcd Mon Sep 17 00:00:00 2001 From: Matt Date: Tue, 25 Jun 2024 11:51:12 +0100 Subject: [PATCH] chore: CI test artifact and node --- .github/workflows/build.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ccb9785..a3188e1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,6 +15,9 @@ jobs: contents: read packages: write + outputs: + output1: ${{ steps.step1.outputs }} + steps: # Checkout the repo files - name: Checkout repository @@ -32,11 +35,22 @@ jobs: - name: Prepare tailwind run: ./gradlew backend:tailwindPrepare + # Node territory + - name: Setup node uses: actions/setup-node@v4 with: node-version: 18 - - name: Run tailwind install + - name: Tailwind install run: npm install -D tailwindcss + working-directory: tailwind + - name: Create tailwind .css file + run: npx tailwindcss -o tailwind.css --minify + working-directory: tailwind + + - uses: actions/upload-artifact@v4 + with: + name: test-artifact + path: tailwind/