Skip to content
This repository was archived by the owner on Aug 7, 2023. It is now read-only.

Commit 9605553

Browse files
committed
ci(circle): move clean after install
Some packages don't play nicely with the old ordering of steps.
1 parent 5070596 commit 9605553

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ defaults: &defaults
3939
- run:
4040
name: APM version
4141
command: ${APM_SCRIPT_PATH} --version
42-
- run:
43-
name: Cleaning package
44-
command: ${APM_SCRIPT_PATH} clean
4542
- run:
4643
name: Package APM package dependencies
4744
command: |
@@ -53,6 +50,9 @@ defaults: &defaults
5350
- run:
5451
name: Package dependencies
5552
command: ${APM_SCRIPT_PATH} install
53+
- run:
54+
name: Cleaning package
55+
command: ${APM_SCRIPT_PATH} clean
5656
- run:
5757
name: Package specs
5858
command: ${ATOM_SCRIPT_PATH} --test spec

0 commit comments

Comments
 (0)