Skip to content

Commit

Permalink
install tailwind in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Joeyh021 committed Aug 25, 2023
1 parent 7e3c017 commit eda27a2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit eda27a2

Please sign in to comment.