Skip to content

Commit 769a81c

Browse files
committed
chore: add tw to shell & fix test
1 parent 220ae2b commit 769a81c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
run: nix flake check --all-systems --show-trace
2727

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

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

3434
- name: Build via Nix
3535
run: nix build

shell.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ in
3131
# Launch scripts
3232
just
3333

34+
# Tailwind
35+
tailwindcss
36+
3437
# Rust
3538
rustc
3639
cargo

0 commit comments

Comments
 (0)