Skip to content

Instantly share code, notes, and snippets.

@diegomais
Created June 29, 2020 18:30
Show Gist options
  • Save diegomais/6d1adaa76d653ad320e35353e5ccd160 to your computer and use it in GitHub Desktop.
Save diegomais/6d1adaa76d653ad320e35353e5ccd160 to your computer and use it in GitHub Desktop.
version: 2.1
orbs:
node: circleci/node@1.1.6
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