-
Notifications
You must be signed in to change notification settings - Fork 5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build: set null environment for PRs #6638
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Codecov ReportPatch coverage has no change and project coverage change:
Additional details and impacted files@@ Coverage Diff @@
## main #6638 +/- ##
===========================================
- Coverage 60.40% 21.19% -39.21%
===========================================
Files 721 707 -14
Lines 21166 20850 -316
Branches 6977 6935 -42
===========================================
- Hits 12785 4419 -8366
- Misses 8304 16415 +8111
+ Partials 77 16 -61
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
1 flaky tests on run #11313 ↗︎
Details:
cypress/e2e/swap/swap.test.ts • 1 flaky test • e2e
This comment has been generated by cypress-bot as a result of this project's GitHub integration settings. |
@@ -17,7 +17,7 @@ jobs: | |||
lint: | |||
runs-on: ubuntu-latest | |||
environment: | |||
name: ${{ github.ref_name == 'main' && 'notify/test' }} | |||
name: ${{ github.ref_name == 'main' && 'notify/test' || null }} | |||
steps: | |||
- uses: actions/checkout@v3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Description
Uses a "ternary" statement to set a null environment for the test.yml workflow.
This is necessary to avoid "temporarily deployed to false" commit comments on the PR, as described in https://github.com/orgs/community/discussions/36919#discussioncomment-4110859.