- Explore the NxCloud Run-Detail pages
- Configure the NxCloud bot to get easy to read reports on the Nx checks performed during CI
-
Enable the NxCloud GitHub bot on your GitHub repository: https://github.com/apps/nx-cloud
-
Switch to a new branch:
git checkout -b nxcloud-bot
-
Make a change in the store:
apps/store/src/app/app.component.ts
(so that it will trigger our affected commands in CI):export class AppComponent { constructor(private http: HttpClient) { console.log("component constructed") }
-
Commit everything and push your branch
-
Make a PR on GitHub
-
Once the checks finish you should see something similar to this:
-
Click on one of the "failed" commands (if any). On the "Run Details" page, click on one of the projects and inspect the terminal output:
🔥 Rather than reading through CI logs, you can use this view to filter to the failed projects and inspect the failure reason scoped to that project.
-
Have a look at the "Cache Hit" and "Cache Miss" filters. What do you think they do?
-
Finally, you should see a "Claim workspace" button at the top - it's a good idea to do that at this stage. We'll explain more about that in a bit!
-
Merge your PR into master and pull latest locally:
git checkout master git pull