Move CI commands into the run file
This commit is contained in:
parent
1b5a341c9e
commit
78c181979a
2 changed files with 15 additions and 6 deletions
12
run.local
12
run.local
|
@ -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/
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue