Skip to content

Commit

Permalink
fix: ci config fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Charlike Mike Reagent <mameto2011@gmail.com>
  • Loading branch information
Charlike Mike Reagent committed Nov 1, 2018
1 parent bdca772 commit 48e4d18
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2

workdir: &workdir
working_directory: ~/parse-commit-message
working_directory: ~/docks

# node8osx: &node8osx
# <<: *workdir
Expand All @@ -26,9 +26,9 @@ node10linux: &node10linux
restore_modules_cache: &restore_modules_cache
restore_cache:
keys:
- parse-commit-message-{{ checksum "yarn.lock" }}
- docks-{{ checksum "yarn.lock" }}
# fallback to using the latest cache if no exact match is found
- parse-commit-message-
- docks-

# jobinstall: &jobinstall
# steps:
Expand All @@ -41,7 +41,7 @@ restore_modules_cache: &restore_modules_cache
# name: Installing project dependencies
# command: pnpm run inst
# - save_cache:
# key: parse-commit-message-{{ checksum "yarn.lock" }}
# key: docks-{{ checksum "yarn.lock" }}
# paths: node_modules
# - run:
# name: Remove node_modules to cleanup workspace
Expand All @@ -58,7 +58,7 @@ jobtest: &jobtest
name: Testing your project
command: yarn test
- save_cache:
key: parse-commit-message-{{ checksum "yarn.lock" }}
key: docks-{{ checksum "yarn.lock" }}
paths: node_modules
- run:
name: Sending test coverage to CodeCov
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
- *restore_modules_cache
- run:
name: Bundling your awesome project
command: yarn build
command: yarn build || echo "No build step."
- run:
name: Releasing and publishing
command: yarn new-release
Expand Down

0 comments on commit 48e4d18

Please sign in to comment.