Skip to content

Commit 6b197c5

Browse files
committed
ci: use yarn
1 parent 0d1d493 commit 6b197c5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@ jobs:
3030
steps:
3131
- attach_workspace:
3232
at: ~/project
33-
- run: npm run lint
34-
- run: npm run flow
35-
- run: npm run test:types
33+
- run: yarn run lint
34+
- run: yarn run flow
35+
- run: yarn run test:types
3636

3737
test-unit:
3838
<<: *defaults
3939
steps:
4040
- attach_workspace:
4141
at: ~/project
42-
- run: npm run test:unit
42+
- run: yarn run test:unit
4343
# add codecov once it is actually ran
4444
# - run:
4545
# name: report coverage stats for non-PRs
@@ -53,14 +53,14 @@ jobs:
5353
steps:
5454
- attach_workspace:
5555
at: ~/project
56-
- run: npm run test:e2e
56+
- run: yarn run test:e2e
5757

5858
test-e2e-bs-ie9:
5959
<<: *defaults
6060
steps:
6161
- attach_workspace:
6262
at: ~/project
63-
- run: npm run test:e2e:ie9
63+
- run: yarn run test:e2e:ie9
6464

6565
workflows:
6666
version: 2

0 commit comments

Comments
 (0)