You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, when a PR is flagged as ready for review we are automatically running the "Build repository / build / Node, Python, Playwright (pull_request)" workflow for the last commit hash. Once the reviewer approves the PR the workflow "Build repository / build / Node, Python, Playwright (pull_request_review)" will run on the exact same commit hash.
In both cases we are running the same setup (installing dependencies, yarn build, applying DB migrations, ...). Given the same commit hash, we could speed up the setup by caching the results of the first workflow and skip the compile and testing for the second workflow run.
The text was updated successfully, but these errors were encountered:
Currently, when a PR is flagged as ready for review we are automatically running the "Build repository / build / Node, Python, Playwright (pull_request)" workflow for the last commit hash. Once the reviewer approves the PR the workflow "Build repository / build / Node, Python, Playwright (pull_request_review)" will run on the exact same commit hash.
In both cases we are running the same setup (installing dependencies, yarn build, applying DB migrations, ...). Given the same commit hash, we could speed up the setup by caching the results of the first workflow and skip the compile and testing for the second workflow run.
The text was updated successfully, but these errors were encountered: