Skip to content

Latest commit

 

History

History
65 lines (44 loc) · 1.85 KB

LAB.md

File metadata and controls

65 lines (44 loc) · 1.85 KB

🔍 Lab 17 - NxCloud GitHub bot

⏰ Estimated time: 10 minutes

📚 Learning outcomes:

  • Explore the NxCloud Run-Detail pages
  • Configure the NxCloud bot to get easy to read reports on the Nx checks performed during CI


🏋️‍♀️ Steps :

  1. Enable the NxCloud GitHub bot on your GitHub repository: https://github.com/apps/nx-cloud

  2. Switch to a new branch: git checkout -b nxcloud-bot

  3. 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")
      }
    



  4. Commit everything and push your branch

  5. Make a PR on GitHub

  6. Once the checks finish you should see something similar to this:

    NxCloud Bot

  7. 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:

    Nx Cloud project

    🔥 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.



  8. Have a look at the "Cache Hit" and "Cache Miss" filters. What do you think they do?

    Cache hit/miss

  9. 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!

  10. Merge your PR into master and pull latest locally:

    git checkout master
    git pull
    


➡️ Next lab ➡️