October 2017
Intermediate to advanced
326 pages
7h 20m
English
Now the setup is complete, before doing anything else, take a look at the .drone.yaml file of the forked repository:
debug: truepipeline: build: image: node commands: - npm install --development - npm test
This is our pipeline, and as you can guess, it gets committed alongside our code into our repository. Drone is going to execute the instructions in this pipeline when GitHub delivers the webhook into our Drone installation. As Drone works with containers, the first thing that Drone is going to do is create an image based on the node (as we specified) and run the following operations:
If the exit code of the container that executes these commands is 0, our build is successful ...
Read now
Unlock full access