Skip to content

Instantly share code, notes, and snippets.

@jerdog
Last active May 16, 2022 18:16
Show Gist options
  • Save jerdog/8725e1a3d1e94b9a4ffa78d71c6cab31 to your computer and use it in GitHub Desktop.
Save jerdog/8725e1a3d1e94b9a4ffa78d71c6cab31 to your computer and use it in GitHub Desktop.
# CircleCI NodeJS Starter Config
version: 2.1
jobs:
test:
docker:
- image: cimg/node:lts
steps:
- checkout
- run:
name: Install dependencies
command: "npm install"
- run:
name: Run tests
command: "npm test"
workflows:
test_app:
jobs:
- test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment