Skip to content

Commit 2cd1fe1

Browse files
committed
- Formatted build script
1 parent 4b5060e commit 2cd1fe1

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

.circleci/config.yml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
version: 2
22
jobs:
3-
build:
4-
working_directory: ~/repo
5-
docker:
6-
- image: circleci/node:latest-browsers
7-
steps:
8-
- checkout
9-
- restore_cache:
10-
keys:
11-
- v1-dependencies-{{ checksum "package.json" }}
12-
- v1-dependencies-
13-
- run:
14-
name: Install dependencies
15-
command: yarn install
16-
- save_cache:
17-
key: v1-dependencies-{{ checksum "package.json" }}
18-
paths:
19-
- node_modules
20-
- run:
21-
name: Build library
22-
command: yarn run release
23-
- run:
24-
name: Run unit tests
25-
command: yarn run test:coverage
26-
- run:
27-
name: Run e2e tests
28-
command: yarn run test:e2e
29-
- run:
30-
name: Submit to Codecov
31-
command: yarn run codecov
3+
build:
4+
working_directory: ~/repo
5+
docker:
6+
- image: circleci/node:latest-browsers
7+
steps:
8+
- checkout
9+
- restore_cache:
10+
keys:
11+
- v1-dependencies-{{ checksum "package.json" }}
12+
- v1-dependencies-
13+
- run:
14+
name: Install dependencies
15+
command: yarn install
16+
- save_cache:
17+
key: v1-dependencies-{{ checksum "package.json" }}
18+
paths:
19+
- node_modules
20+
- run:
21+
name: Build library
22+
command: yarn run release
23+
- run:
24+
name: Run unit tests
25+
command: yarn run test:coverage
26+
- run:
27+
name: Run e2e tests
28+
command: yarn run test:e2e
29+
- run:
30+
name: Submit to Codecov
31+
command: yarn run codecov

0 commit comments

Comments
 (0)