Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Gally]: master <- dev #77

Merged
merged 10 commits into from Sep 14, 2019
39 changes: 36 additions & 3 deletions .circleci/config.yml
Expand Up @@ -50,7 +50,18 @@ jobs:
if [[ -n "${NPM_TOKEN}" ]]; then
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
fi
- run: yarn install --frozen-lockfile
- restore_cache:
name: Restore Yarn Package Cache
keys:
- 'yarn-packages-{{ checksum "yarn.lock" }}'
- run:
name: Install Dependencies
command: yarn install --frozen-lockfile
- save_cache:
name: Save Yarn Package Cache
key: 'yarn-packages-{{ checksum "yarn.lock" }}'
paths:
- ~/.cache/yarn
- run: yarn test
- run: >-
(git add . && git diff-index --quiet HEAD --) || (git status && exit
Expand All @@ -76,7 +87,18 @@ jobs:
if [[ -n "${NPM_TOKEN}" ]]; then
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
fi
- run: yarn install --frozen-lockfile
- restore_cache:
name: Restore Yarn Package Cache
keys:
- 'yarn-packages-{{ checksum "yarn.lock" }}'
- run:
name: Install Dependencies
command: yarn install --frozen-lockfile
- save_cache:
name: Save Yarn Package Cache
key: 'yarn-packages-{{ checksum "yarn.lock" }}'
paths:
- ~/.cache/yarn
- run: yarn test
- run: >-
(git add . && git diff-index --quiet HEAD --) || (git status && exit
Expand Down Expand Up @@ -119,5 +141,16 @@ jobs:
if [[ -n "${NPM_TOKEN}" ]]; then
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
fi
- run: yarn install --frozen-lockfile
- restore_cache:
name: Restore Yarn Package Cache
keys:
- 'yarn-packages-{{ checksum "yarn.lock" }}'
- run:
name: Install Dependencies
command: yarn install --frozen-lockfile
- save_cache:
name: Save Yarn Package Cache
key: 'yarn-packages-{{ checksum "yarn.lock" }}'
paths:
- ~/.cache/yarn
- run: yarn run semantic-release
19 changes: 9 additions & 10 deletions package.json
Expand Up @@ -13,26 +13,25 @@
"@babel/core": "7.6.0",
"@babel/plugin-proposal-object-rest-spread": "7.5.5",
"@babel/register": "7.6.0",
"@blackflux/eslint-plugin-rules": "1.3.8",
"@blackflux/robo-config-plugin": "2.6.3",
"@blackflux/eslint-plugin-rules": "1.3.9",
"@blackflux/robo-config-plugin": "2.6.5",
"apollo-server": "2.9.3",
"babel-eslint": "10.0.3",
"chai": "4.2.0",
"coveralls": "3.0.6",
"eslint": "6.3.0",
"eslint": "6.4.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-json": "1.4.0",
"eslint-plugin-markdown": "1.0.0",
"eslint-plugin-mocha": "6.1.1",
"graphql": "14.5.4",
"js-gardener": "2.0.83",
"node-tdd": "2.5.3",
"graphql": "14.5.5",
"js-gardener": "2.0.88",
"node-tdd": "2.5.4",
"nyc": "14.1.1",
"request": "2.88.0",
"request-promise": "4.2.4",
"semantic-release": "15.13.24",
"smart-fs": "1.9.11"
"semantic-release": "15.13.24"
},
"licenses": [
{
Expand Down Expand Up @@ -115,7 +114,7 @@
"json-stable-stringify": "1.0.1",
"lodash.get": "4.4.2",
"lodash.set": "4.3.2",
"object-scan": "10.0.11",
"smart-fs": "1.9.11"
"object-scan": "10.0.13",
"smart-fs": "1.9.12"
}
}