From 9446c8f8bbab95681024596f6cac92789d149e69 Mon Sep 17 00:00:00 2001 From: itsscb Date: Fri, 23 Aug 2024 15:42:17 +0200 Subject: [PATCH] feat: local tailwindcss setup & more cache --- .github/workflows/prod.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/prod.yml b/.github/workflows/prod.yml index 33a7f74..e56e312 100644 --- a/.github/workflows/prod.yml +++ b/.github/workflows/prod.yml @@ -17,10 +17,11 @@ jobs: uses: actions/cache@v4 with: path: | - node_modules - ~/.cache/trunk ~/.cargo + ~/.cache/trunk target/ + node_modules + frontend/dist key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} restore-keys: ${{ runner.os }}-cargo-wordl @@ -42,7 +43,7 @@ jobs: node-version: 20 - name: Install Tailwind CSS - run: npm install -g tailwindcss + run: npm install -D tailwindcss - name: Build Frontend working-directory: ./frontend