Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 262 Bytes

minimal-circle-ci-config-for-node.md

File metadata and controls

16 lines (14 loc) · 262 Bytes

Minimal Circle CI config.yml for Node

This uses the version 2 config format.

version: 2
jobs:
  build:
    docker:
      - image: circleci/node:8
    steps:
      - checkout
      - run: npm install
      - run: npm run lint
      - run: npm test