feat: Add testing Justfile recipes

This commit is contained in:
punkfairie 2025-03-15 14:43:03 -07:00
parent d86523bb1e
commit 81e6bde56b
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6

View file

@ -1,3 +1,20 @@
default: testBoth
[working-directory: 'packages/npm-modules']
genNpmModules:
nix run nixpkgs#node2nix -- -i packages.json
test:
git add --all && nix run .
testNix:
git add --all && nix run . -- flake.nix
testLua:
git add --all && nix run . -- init.lua
testBoth:
git add --all && nix run . -- flake.nix init.lua
testFile +files:
git add --all && nix run . -- {{files}}