We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 220ae2b commit 769a81cCopy full SHA for 769a81c
.github/workflows/test.yml
@@ -26,10 +26,10 @@ jobs:
26
run: nix flake check --all-systems --show-trace
27
28
- name: Compile css
29
- 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"
30
31
- name: Compile website
32
- run: nix-shell --run "trunk build --release"
+ run: nix develop --command bash -c "trunk build --release"
33
34
- name: Build via Nix
35
run: nix build
shell.nix
@@ -31,6 +31,9 @@ in
# Launch scripts
just
+ # Tailwind
+ tailwindcss
36
+
37
# Rust
38
rustc
39
cargo
0 commit comments