Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
A simple Drone CI pipeline to build and test a Node.js project.
# .drone.yml
kind: pipeline
name: default
steps:
- name: install
image: node:16
commands:
- npm install
- name: build
image: node:16
commands:
- npm run build
- name: test
image: node:16
commands:
- npm testDrone CI is a modern, container-native continuous integration and delivery platform that defines pipelines as code in a `.drone.yml` file. It runs each pipeline step inside isolated Docker containers, providing fast, reproducible, and scalable builds.
Origin & Creator
Developed by Brad Rydzewski and the Drone.io team to provide a lightweight, container-first CI/CD solution.
Industrial Note
Drone CI is ideal for DevOps teams leveraging Docker and Kubernetes, enabling efficient, reproducible pipelines in microservices and cloud-native environments.