Skip to content

Commit 9176978

Browse files
author
jabyess
committed
more config changes
1 parent e44e617 commit 9176978

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

.circleci/config.yml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,14 @@ jobs:
88
docker:
99
# specify the version you desire here
1010
- image: circleci/node:8.11-stretch-browsers
11-
12-
# Specify service dependencies here if necessary
13-
# CircleCI maintains a library of pre-built images
14-
# documented at https://circleci.com/docs/2.0/circleci-images/
15-
# - image: circleci/mongo:3.4.4
16-
17-
working_directory: ~/repo
18-
1911
steps:
2012
- checkout
2113
# Download and cache dependencies
2214
- restore_cache:
2315
key: v1-dependencies-{{ checksum "package.json" }}
24-
# fallback to using the latest cache if no exact match is found
25-
- v1-dependencies-
2616

2717
- run:
28-
command: npm install
18+
command: 'npm install'
2919
name: install npm packages
3020

3121
- save_cache:
@@ -35,7 +25,7 @@ jobs:
3525

3626
# run tests!
3727
- run:
38-
command: npm test
28+
command: 'npm test'
3929
name: run tests
4030

4131

0 commit comments

Comments
 (0)