Created
June 29, 2020 18:30
-
-
Save diegomais/6d1adaa76d653ad320e35353e5ccd160 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
version: 2.1 | |
orbs: | |
node: circleci/[email protected] | |
jobs: | |
build-and-test: | |
executor: | |
name: node/default | |
steps: | |
- checkout | |
- node/with-cache: | |
steps: | |
- run: npm install | |
- run: npm test | |
workflows: | |
build-and-test: | |
jobs: | |
- build-and-test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment