Skip to content

Commit fb291ff

Browse files
committed
ci(workspace): use .. instead of ~
Hopefully this will work as home dir path agnostic way of setting it to home since CWD is exlicitly specified as ~/repo, .. should result in ~.
1 parent e283656 commit fb291ff

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- run: npm ci
4343

4444
- persist_to_workspace:
45-
root: ~
45+
root: ..
4646
paths:
4747
- ".cache"
4848
- "repo"
@@ -52,12 +52,12 @@ jobs:
5252

5353
steps:
5454
- attach_workspace:
55-
at: ~
55+
at: ..
5656

5757
- run: npm run build
5858

5959
- persist_to_workspace:
60-
root: ~
60+
root: ..
6161
paths:
6262
- "repo/babel-preset"
6363
- "repo/babel-register"
@@ -71,7 +71,7 @@ jobs:
7171

7272
steps:
7373
- attach_workspace:
74-
at: ~
74+
at: ..
7575

7676
- run: npm run style
7777
- run: npm run lint
@@ -81,7 +81,7 @@ jobs:
8181

8282
steps:
8383
- attach_workspace:
84-
at: ~
84+
at: ..
8585

8686
- run: npm run test:unit
8787

@@ -93,7 +93,7 @@ jobs:
9393
condition: << pipeline.parameters.is-testing-interoperability >>
9494
steps:
9595
- attach_workspace:
96-
at: ~
96+
at: ..
9797

9898
- run: npm pack
9999

@@ -119,7 +119,7 @@ jobs:
119119

120120
steps:
121121
- attach_workspace:
122-
at: ~
122+
at: ..
123123

124124
- run:
125125
name: Prepare NPM

0 commit comments

Comments
 (0)