From 0504cb4f9c225f61d3fe2bcff0a61290e5cd2ec3 Mon Sep 17 00:00:00 2001 From: Martin Betz Date: Fri, 20 Dec 2024 16:09:57 +0100 Subject: [PATCH] Add: Build CSS step to CI --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 35533ed..1d22b06 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -53,6 +53,9 @@ jobs: - name: install frontend dependencies # If you don't have `beforeBuildCommand` configured you may want to build your frontend here too. run: npm install # change this to npm or pnpm depending on which one you use. + + - name: build CSS + run: npx tailwindcss -i src/in.css -o src/out.css --minify - uses: tauri-apps/tauri-action@v0 env: