From eda27a2e4961a8eeae3c87cee5817e29a4048fda Mon Sep 17 00:00:00 2001 From: Joey Harrison Date: Fri, 25 Aug 2023 12:44:09 +0100 Subject: [PATCH] install tailwind in actions --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d9dc4a0..a05f47b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,6 +25,11 @@ jobs: - uses: Swatinem/rust-cache@v2 with: shared-key: ci-build + + # need to install tailwind for the build to run + - name: Install tailwind cli + run: wget -O tailwindcss https://github.com/tailwindlabs/tailwindcss/releases/download/$(wget -q -O - https://api.github.com/repos/tailwindlabs/tailwindcss/releases/latest | jq -r ".tag_name")/tailwindcss-linux-x64 && chmod u+x tailwindcss + - name: Run clippy run: cargo clippy --verbose --no-deps - name: Check formatting