Skip to content

Commit 98c3af6

Browse files
committed
Use new config for CircleCI
1 parent b74ac73 commit 98c3af6

File tree

2 files changed

+24
-20
lines changed

2 files changed

+24
-20
lines changed

.circleci/config.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/node:8
6+
7+
working_directory: ~/eslint-plugin-react-pug
8+
9+
steps:
10+
- checkout
11+
- restore_cache:
12+
keys:
13+
- v1-dependencies-{{ checksum "package.json" }}
14+
- v1-dependencies-
15+
16+
- run: yarn install
17+
18+
- save_cache:
19+
key: v1-dependencies-{{ checksum "package.json" }}
20+
paths:
21+
- node_modules
22+
23+
- run: yarn lint
24+
- run: yarn test

circle.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)