Melroy van den Berg
Melroy van den Berg
The URL should now be: https://turborepo.com/docs/core-concepts/remote-caching Which is currently not the case in the CLI output towards the terminal.
As you see see we at Mbin also are facing similar issues now here: https://github.com/MbinOrg/mbin/pull/1873
Unit tests are actually running within 5 seconds :). It's the integration tests that take longer. However BentiGorlich recently combined the two into a single workflow: https://github.com/MbinOrg/mbin/pull/1300#issuecomment-2562496338. But yes the...
Yes makes sense to me. And just be sure always run it on the main branch as well?
Always run it on the main branch. And only run it on PRs in case of changes, is what I mean to say.
Split the workflow again like it was. Create a separate workflow for integration test. Making this workflow optional. While the unit test is always required.
> I don't think that we should consider not marking the integration tests as required... Double negative.. Which makes it very hard to understand it for me 😖 . You...
You can skip steps in a workflow yes. Using a `if`: https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/using-conditions-to-control-job-execution
Great! Also.. you can use a previous step to determine whether or not to run the integration test and use for example "an output parameter": https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#setting-an-output-parameter. When you then use...
> This is proving to be challenging 😅 > > I do have a question about how we want to handle this. Let me lay out a scenario: > >...