jsonbinpack
Version:
A space-efficient schema-driven binary JSON serialization format based on JSON Schema
35 lines (34 loc) • 632 B
JSON
{
"name": "Test on Pull",
"on": [
"push"
],
"jobs": {
"build": {
"runs-on": "ubuntu-latest",
"env": {
"build-suite-dir": "./build-suite"
},
"steps": [
{
"uses": "actions/checkout@v1"
},
{
"uses": "actions/setup-node@v1",
"with": {
"node-version": "10.x"
}
},
{
"name": "starting directory",
"run": "ls"
},
{
"name": "build directory",
"run": "ls",
"working-directory": "${{env.build-suite-dir}}"
}
]
}
}
}