Move CI commands into the run file

This commit is contained in:
Oliver Davies 2024-09-12 22:22:49 +01:00
parent 1b5a341c9e
commit 78c181979a
2 changed files with 15 additions and 6 deletions

View file

@ -1,5 +1,17 @@
#!/usr/bin/env bash
function ci:build {
APP_ENV=prod nix develop --command ./run generate
}
function ci:install {
nix develop --command composer install
}
function ci:test {
nix develop --command ./run test --testdox --colors=always
}
function clean {
rm -fr output_*/ source/build/
}