File tree 2 files changed +20
-20
lines changed
2 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 1
1
version : 2
2
2
jobs :
3
- build:
4
- docker:
5
- - image: buildkite/puppeteer
6
- working_directory: ~/repo
7
- steps:
8
- - checkout
9
- - restore_cache:
10
- keys:
11
- - v1-dependencies-{{ checksum "yarn.lock" }}
12
- - run: yarn install
13
- - save_cache:
14
- paths:
15
- - node_modules
16
- key: v1-dependencies-{{ checksum "yarn.lock" }}
3
+ build :
4
+ docker :
5
+ - image : buildkite/puppeteer
6
+ working_directory : ~/repo
7
+ steps :
8
+ - checkout
9
+ - restore_cache :
10
+ keys :
11
+ - v1-dependencies-{{ checksum "yarn.lock" }}
12
+ - run : yarn install
13
+ - save_cache :
14
+ paths :
15
+ - node_modules
16
+ key : v1-dependencies-{{ checksum "yarn.lock" }}
17
17
18
- # test building project
19
- - run: yarn run build
18
+ # test building project
19
+ - run : yarn run build
20
20
21
- # test e2e tests and jest snapshots
22
- - run: cd packages/diagrams-demo-gallery && yarn run test --ci
23
- - run: cd packages/react-diagrams-routing && yarn run test --ci
21
+ # test e2e tests and jest snapshots
22
+ - run : cd packages/diagrams-demo-gallery && yarn run test --ci
23
+ - run : cd packages/react-diagrams-routing && yarn run test --ci
Original file line number Diff line number Diff line change @@ -4,6 +4,6 @@ indent_size = 2
4
4
trim_trailing_whitespace = true
5
5
6
6
# Some exceptions
7
- [{package.json} ]
7
+ [{package.json, * .yml } ]
8
8
indent_style = space
9
9
indent_size = 2
You can’t perform that action at this time.
0 commit comments