Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperpeulen committed Mar 5, 2024
1 parent a1f79a3 commit 595c03b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ jobs:
- run:
name: Creating Sandboxes
command: |
yarn task --task sandbox --template $(yarn get-template --cadence << pipeline.parameters.workflow >> --task sandbox) --no-link --start-from=never --junit
yarn task --task sandbox --template $(yarn get-template --cadence << pipeline.parameters.workflow >> --task sandbox) --no-link --start-from=compile --junit
- report-workflow-on-failure:
template: $(yarn get-template --cadence << pipeline.parameters.workflow >> --task sandbox)
- persist_to_workspace:
Expand Down Expand Up @@ -324,7 +324,9 @@ jobs:
background: true
- run:
name: Building Sandboxes
command: yarn task --task build --template $(yarn get-template --cadence << pipeline.parameters.workflow >> --task build) --no-link --start-from=never --junit
command: |
yarn nx run-many -t build -c production --parallel 3
yarn task --task build --template $(yarn get-template --cadence << pipeline.parameters.workflow >> --task build) --no-link --start-from=never --junit
- run:
name: Verifying Telemetry
command: |
Expand Down
2 changes: 1 addition & 1 deletion code/nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
"executor": "nx:run-commands",
"options": {
"cwd": "{workspaceRoot}/../{projectRoot}",
"command": "yarn storybook --no-open"
"command": "yarn storybook"
},
"dependsOn": ["sandbox"]
}
Expand Down

0 comments on commit 595c03b

Please sign in to comment.