dream-api
Version:
API wrapper for Wombo Dream
29 lines (25 loc) • 831 B
YAML
# Use the latest 2.1 version of CircleCI pipeline process engine.
# See: https://circleci.com/docs/2.0/configuration-reference
version: 2.1
orbs:
node: circleci/node@5.0.2
# Define a job to be invoked later in a workflow.
# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
jobs:
build_and_test: # this can be any name you choose
executor: node/default # use the default executor defined within the orb
steps:
- checkout
- node/install-packages:
pkg-manager: npm
- run:
command: npm test
name: Run tests
- store_test_results:
path: test-results
# Invoke jobs via workflows
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
workflows:
build_test: # this can be any name you choose
jobs:
- build_and_test