Skip to content

Commit

Permalink
chore(circleci): suporte para node v6, v7, v8, v9 e v10
Browse files Browse the repository at this point in the history
  • Loading branch information
gtkatakura committed Jun 9, 2018
1 parent de82a1a commit ababd40
Showing 1 changed file with 50 additions and 29 deletions.
79 changes: 50 additions & 29 deletions .circleci/config.yml
@@ -1,39 +1,60 @@
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
workflows:
version: 2
node-multi-build:
jobs:
- node-v6
- node-v7
- node-v8
- node-v9
- node-v10

version: 2
jobs:
build:
node-base: &node-base
docker:
# specify the version you desire here
- image: circleci/node:7.10

# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/mongo:3.4.4

working_directory: ~/repo

- image: node
steps:
- run:
name: Versions
command: npm version
- 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

- v{{ .Environment.CIRCLE_CACHE_VERSION }}-npm-lock-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package-lock.json" }}
- v{{ .Environment.CIRCLE_CACHE_VERSION }}-npm-lock-master-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package-lock.json" }}
- v{{ .Environment.CIRCLE_CACHE_VERSION }}-npm-cache-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}
- v{{ .Environment.CIRCLE_CACHE_VERSION }}-npm-cache-master-{{ .Environment.CIRCLE_JOB }}
- run:
name: Install dependencies
command: npm install
- run:
name: Test
command: npm test
- save_cache:
key: v{{ .Environment.CIRCLE_CACHE_VERSION }}-npm-lock-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package-lock.json" }}
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}

# run tests!
- run: yarn test


- save_cache:
key: v{{ .Environment.CIRCLE_CACHE_VERSION }}-npm-cache-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package-lock.json" }}
paths:
- ~/.npm/_cacache
node-v6:
<<: *node-base
docker:
- image: node:6
node-v7:
<<: *node-base
docker:
- image: node:7
node-v8:
<<: *node-base
docker:
- image: node:8
node-v9:
<<: *node-base
docker:
- image: node:9
node-v10:
<<: *node-base
docker:
- image: node:10

0 comments on commit ababd40

Please sign in to comment.