19 lines
482 B
YAML
19 lines
482 B
YAML
jobs:
|
|
test:
|
|
executor:
|
|
name: node/default
|
|
tag: "14.15.1"
|
|
steps:
|
|
- checkout
|
|
- node/install-packages:
|
|
pkg-manager: yarn
|
|
- run:
|
|
command: yarn test
|
|
name: Run YARN tests
|
|
version: 2.1 # using 2.1 provides access to orbs and other features
|
|
orbs: # declare what orbs we are going to use
|
|
node: circleci/node@3.0.0 # the node orb provides common node-related configuration
|
|
workflows:
|
|
node-tests:
|
|
jobs:
|
|
- test
|