From af1b4aabdfe70b2aada9a6e91745a7aae4d19e58 Mon Sep 17 00:00:00 2001 From: Johan Nordberg Date: Wed, 13 Jun 2018 18:12:37 +0200 Subject: [PATCH] Test against node 10 --- .circleci/config.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index dd19b8d..67a61fe 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -42,9 +42,31 @@ jobs: - store_artifacts: path: reports destination: reports + node10: + docker: + - image: node:10-alpine + steps: + - run: apk add --no-cache make bash ca-certificates + - checkout + - restore_cache: + keys: + - node10-dependencies-{{ checksum "yarn.lock" }} + - node10-dependencies- + - run: yarn install --frozen-lockfile + - save_cache: + paths: + - node_modules + key: node10-dependencies-{{ checksum "yarn.lock" }} + - run: yarn test + - store_test_results: + path: reports + - store_artifacts: + path: reports + destination: reports workflows: version: 2 build: jobs: - node8 - node9 + - node10