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 CircleCI config to build and test a Node.js application.
# .circleci/config.yml
version: 2.1
jobs:
build:
docker:
- image: cimg/node:16.14
steps:
- checkout
- run: npm install
- run: npm run build
test:
docker:
- image: cimg/node:16.14
steps:
- checkout
- run: npm install
- run: npm test
workflows:
version: 2
build_and_test:
jobs:
- build
- testCircleCI is a cloud-based and on-premises continuous integration and continuous delivery (CI/CD) platform that automates software builds, tests, and deployments using pipeline configurations.
Origin & Creator
Created by Paul Biggar and Allen Rohner in 2011 and maintained by CircleCI, Inc.
Industrial Note
CircleCI is widely used in enterprise DevOps for complex multi-environment pipelines, including cloud-native, microservices, and hybrid deployment workflows.