Skip to content

Commit ee19753

Browse files
committed
use node10 for circleci testing
1 parent 48b7f8f commit ee19753

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ version: 2
22
jobs:
33
build-and-test:
44
docker:
5-
- image: circleci/node:6.14.3-browsers
5+
- image: circleci/node:10
66
environment:
7-
LANG: en_US.UTF-8
7+
LANG: en_US.UTF-8
88
steps:
99
- checkout
10-
- run:
10+
- run:
1111
name: Update Yarn
1212
command: 'sudo npm update -g yarn'
1313
- restore-cache:
1414
name: Restore Yarn Package Cache
15-
keys:
15+
keys:
1616
- yarn-packages-{{ checksum "yarn.lock" }}
1717
- run:
1818
name: Install Dependencies
@@ -22,13 +22,13 @@ jobs:
2222
key: yarn-packages-{{ checksum "yarn.lock" }}
2323
paths:
2424
- ~/.cache/yarn
25-
- run:
25+
- run:
2626
name: Check
2727
command: yarn check
28-
- run:
28+
- run:
2929
name: Tests
3030
command: yarn test:ci
31-
- run:
31+
- run:
3232
name: Generate Coverage
3333
command: yarn test:coverage
3434

0 commit comments

Comments
 (0)