Opi Danihelka
Continuous Integration (CI) is the process of automating the build and testing of code every time a team member commits changes to version control.
machine: environment: NODE_ENV: test node: version: 6.9.1 dependencies: cache_directories: - node_modules test: override: - npm test - npm run eslint
{ "name": "actum-ci-demo", "scripts": { }, "env": { }, "formation": { }, "addons": [ ], "buildpacks": [ ] }
By Opi Danihelka