Browse Source

Remove lint cache

main
anthony 5 years ago
parent
commit
4dbdd8cedf
  1. 18
      .circleci/config.yml

18
.circleci/config.yml

@ -13,17 +13,6 @@ globals:
password: $DOCKERHUB_PASSWORD
setup:
- &install-cache
restore_cache:
keys:
- npm-v1-dependencies-{{ checksum "yarn.lock" }}
- &lint-cache
restore_cache:
keys:
- npm-v1-lint-{{ .BuildNum }}
commands:
init:
description: Setup the environment
@ -70,7 +59,6 @@ jobs:
- *docker-config
steps:
- init
- *lint-cache
- run:
name: Check files format
command: yarn format:check
@ -79,12 +67,6 @@ jobs:
name: Lint files
command: yarn lint
- save_cache:
name: Save linted files
key: npm-v1-lint-{{ .BuildNum }}
paths:
- src
# Run CI tests
test-ci:
docker:

Loading…
Cancel
Save