1
0
mirror of https://github.com/alrayyes/my-opinionated-gatsby-starter synced 2023-11-14 15:56:29 +00:00

Add .circleci/config.yml

This commit is contained in:
Ryan Kes 2020-06-23 17:42:15 +02:00
parent 032da7e69e
commit 75f998a8fc

17
.circleci/config.yml Normal file
View File

@ -0,0 +1,17 @@
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
workflows:
build-and-test:
jobs:
- build-and-test