Skip to content

Instantly share code, notes, and snippets.

View robertstettner's full-sized avatar

Robert Stettner robertstettner

View GitHub Profile
@robertstettner
robertstettner / .circleci.yml
Created April 10, 2018 15:22
Example CircleCI file
version: 2
jobs:
install:
docker:
- image: circleci/node:6.13
steps:
- checkout
- run:
command: npm install
test:
@robertstettner
robertstettner / Jenkinsfile
Created April 10, 2018 14:47
Example Jenkinsfile
pipeline {
stages {
stage("install") {
agent {
docker {
reuseNode true
image 'node:6.10'
}
}
steps {
@robertstettner
robertstettner / .drone.yml
Created April 10, 2018 14:45
Example Drone file
pipeline:
install:
image: node:6.13
commands:
- npm install
test:
image: node:6.13
commands:
- npm test