Skip to content

Instantly share code, notes, and snippets.

@michaloo
Last active August 28, 2018 08:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save michaloo/72fb388523881c1408c9019911097864 to your computer and use it in GitHub Desktop.
Save michaloo/72fb388523881c1408c9019911097864 to your computer and use it in GitHub Desktop.
Connector engines definition and CircleCI configuration
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/node:6.12
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: yarn install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
# run tests!
- run: yarn test
- run: ./node_modules/.bin/hull-connector-tester
{
"engines": {
"node": "6.12.x",
"npm": "3.10.x",
"yarn": "1.3.x"
}
}
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/node:8.9
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: yarn install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
# run tests!
- run: yarn test
- run: ./node_modules/.bin/hull-connector-tester
{
"engines": {
"node": "8.9.x",
"npm": "5.5.x",
"yarn": "1.3.x"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment