Skip to content

Commit

Permalink
chore: add tw to shell & fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
orzklv committed Dec 22, 2024
1 parent 220ae2b commit 769a81c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
run: nix flake check --all-systems --show-trace

- name: Compile css
run: nix-shell --run "tailwindcss -i ./style/input.css -o ./style/output.css"
run: nix develop --command bash -c "tailwindcss -i ./style/input.css -o ./style/output.css"

- name: Compile website
run: nix-shell --run "trunk build --release"
run: nix develop --command bash -c "trunk build --release"

- name: Build via Nix
run: nix build
3 changes: 3 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ in
# Launch scripts
just

# Tailwind
tailwindcss

# Rust
rustc
cargo
Expand Down

0 comments on commit 769a81c

Please sign in to comment.