mirror of
https://github.com/alrayyes/my-opinionated-gatsby-starter
synced 2023-11-14 15:56:29 +00:00
20 lines
374 B
YAML
20 lines
374 B
YAML
|
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: yarn install
|
||
|
- run: yarn test:coverage
|
||
|
- store_artifacts:
|
||
|
path: coverage
|
||
|
workflows:
|
||
|
build-and-test:
|
||
|
jobs:
|
||
|
- build-and-test
|