Last active
May 16, 2022 18:16
-
-
Save jerdog/8725e1a3d1e94b9a4ffa78d71c6cab31 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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