Skip to content

Commit

Permalink
chore: CI test artifact and node
Browse files Browse the repository at this point in the history
  • Loading branch information
LichtHund committed Jun 25, 2024
1 parent 146c392 commit 662779c
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
contents: read
packages: write

outputs:
output1: ${{ steps.step1.outputs }}

steps:
# Checkout the repo files
- name: Checkout repository
Expand All @@ -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/

0 comments on commit 662779c

Please sign in to comment.