monad-state
Version:
The State Monad
33 lines (32 loc) • 420 B
YAML
{
"image": "node:8",
"stages": [
"test",
"deploy"
],
"test": {
"stage": "test",
"script": [
"npm install",
"npm test"
],
"except": [
"pages"
]
},
"pages": {
"stage": "deploy",
"script": [
"npm run pages"
],
"environment": "pages",
"artifacts": {
"paths": [
"public"
]
},
"only": [
"master"
]
}
}