From 174f6525b3e54a39b4d0222db76082b78b431924 Mon Sep 17 00:00:00 2001 From: Sorrel Bri Date: Wed, 5 Feb 2020 13:48:48 -0800 Subject: [PATCH] split job steps into api and play --- .circleci/config.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f7a4843..a346a97 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,10 +16,10 @@ jobs: working_directory: ~/node-go - steps: - api: - path: ~/node-go/server - # - checkout + api: + path: ~/node-go/server + steps: + - checkout # Download and cache dependencies - restore_cache: @@ -36,9 +36,10 @@ jobs: key: v1-dependencies-{{ checksum "package.json" }} # run tests! + play: + path: ~/node-go/play-node-go + steps: - run: yarn test - play: - path: ~/node-go/play-node-go - checkout # Download and cache dependencies