Skip to content

Commit 3e39c96

Browse files
committed
ci: fix circle ci
1 parent 55608aa commit 3e39c96

File tree

1 file changed

+6
-15
lines changed

1 file changed

+6
-15
lines changed

.circleci/config.yml

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -35,30 +35,21 @@ jobs:
3535
root: .
3636
paths: .
3737

38-
lint-and-typecheck:
38+
lint:
3939
executor: default
4040
steps:
4141
- attach_project
4242
- run:
4343
name: Lint files
4444
command: yarn lint
45-
- run:
46-
name: Typecheck files
47-
command: yarn typescript
4845

49-
unit-tests:
46+
typescript:
5047
executor: default
5148
steps:
5249
- attach_project
5350
- run:
54-
name: Run unit tests
55-
command: yarn test --maxWorkers=2 --coverage
56-
- run:
57-
name: Upload test coverage
58-
command: yarn codecov
59-
- store_artifacts:
60-
path: coverage
61-
destination: coverage
51+
name: Typecheck files
52+
command: yarn typescript
6253

6354
build-packages:
6455
executor: default
@@ -75,10 +66,10 @@ workflows:
7566
build-and-test:
7667
jobs:
7768
- install-dependencies
78-
- lint-and-typecheck:
69+
- lint:
7970
requires:
8071
- install-dependencies
81-
- unit-tests:
72+
- typescript:
8273
requires:
8374
- install-dependencies
8475
- build-packages:

0 commit comments

Comments
 (0)