Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 5e01438

Browse files
committed
Updates for better versions and install commands
1 parent 7873ebb commit 5e01438

File tree

1 file changed

+3
-22
lines changed

1 file changed

+3
-22
lines changed

.circleci/circle.yml

Lines changed: 3 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,18 @@
1-
# Javascript Node CircleCI 2.0 configuration file
2-
#
3-
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
4-
#
51
version: 2
62
jobs:
73
build:
84
docker:
9-
# specify the version you desire here
10-
- image: circleci/node:7.10
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-
5+
- image: circleci/node:8.9.4
176
working_directory: ~/repo
18-
197
steps:
208
- checkout
21-
22-
# Download and cache dependencies
239
- restore_cache:
2410
keys:
2511
- v1-dependencies-{{ checksum "package.json" }}
26-
# fallback to using the latest cache if no exact match is found
2712
- v1-dependencies-
28-
29-
- run: yarn install
30-
13+
- run: npm install
3114
- save_cache:
3215
paths:
3316
- node_modules
3417
key: v1-dependencies-{{ checksum "package.json" }}
35-
36-
# run tests!
37-
- run: yarn test
18+
- run: npm run lint

0 commit comments

Comments
 (0)