From e88d03a8709a27ef31ee43b979bd9cc04276d5fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=B8=85?= Date: Wed, 5 Sep 2018 20:29:56 +0800 Subject: [PATCH] change docker version --- .circleci/config.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a6e49b6e..ddafc61e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,19 +2,21 @@ version: 2 jobs: build: docker: - - image: circleci/node:8.11.2 + - image: circleci/node:8.11.4 steps: - checkout - run: npm install - run: npm run build test: docker: - - image: circleci/node:8.11.2 + - image: circleci/node:8.11.4 steps: - checkout - run: sh ./tests/fix_puppeteer.sh - run: npm install - - run: npm run test:all + - run: + command : npm run test:all + no_output_timeout : 30m workflows: version: 2 build_and_test: -- GitLab