Merged
Conversation
Signed-off-by: zomars <zomars@me.com> # Conflicts: # .github/workflows/pr.yml
…oysentinel-as-playwright-support-is-deprecated
zomars
commented
Aug 13, 2024
Comment on lines
-40
to
-41
| restore-keys: | | ||
| yarn-download-cache- |
Contributor
Author
There was a problem hiding this comment.
Prevent stale caches. Only exact matches should be used.
zomars
commented
Aug 13, 2024
| ${{ github.workspace }}/node_modules/playwright | ||
| key: cache-playwright-${{ hashFiles('**/yarn.lock') }} | ||
| restore-keys: cache-playwright- | ||
| key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }} |
Contributor
Author
There was a problem hiding this comment.
Only bust playwright cache when the version actually changes. Not when any other dependency changes.
zomars
commented
Aug 13, 2024
| fullyParallel: true, | ||
| reporter: [ | ||
| [process.env.CI ? "github" : "list"], | ||
| [process.env.CI ? "blob" : "list"], |
Contributor
Author
There was a problem hiding this comment.
the GitHub reporter is not useful since we're using matrix strategies. https://playwright.dev/docs/test-reporters#github-actions-annotations
* Add bookingSuccessful event for recurring booking * Remove unused variable
…ckable before flicker, and fix timezone issue (#16001) * test: prevent modal button clickable before flicker * chore: add note to migrate to appDir to solve full page flicker issue * chore: Improve OutOfOfficePage loading experience Refactor the OutOfOfficePage component to improve the loading experience by using the `isPending` property from the `trpc.viewer.outOfOfficeReasonList.useQuery()` hook. This workaorund eliminates the full page flicker issue and provides a better user experience. The "Add" button now shows a loading state when the query is pending. * Update index.tsx * chore: Update outOfOffice.handler.ts to use input.offset instead of calculating offset * fix e2e * Update * revert * chore: Fix offset calculation for out of office bookings * chore: Update date range calculation for out-of-office modal * chore: Remove console.log statement in out-of-office modal * chore: Update TimeZoneEnum with additional time zones This commit updates the TimeZoneEnum in the types.ts file to include additional time zones. The new time zones added are: - ID: Asia/Jakarta (UTC+7) - SAMOA: Etc/GMT+12 (UTC-12) - AMERICAN_SAMOA: Pacific/Pago_Pago (UTC-11) - HAWAII: Pacific/Honolulu (UTC-10) - ALASKA: America/Anchorage (UTC-9) - PACIFIC_USA: America/Los_Angeles (UTC-8) - CENTRAL_USA: America/Chicago (UTC-6) - EASTERN_USA: America/New_York (UTC-5) - VENEZUELA: America/Caracas (UTC-4) - ARGENTINA: America/Buenos_Aires (UTC-3) - BRAZIL: America/Noronha (UTC-2) - AZORES: Atlantic/Azores (UTC-1) - FRANCE: Europe/Paris (UTC+1) - GREECE: Europe/Athens (UTC+2) - RUSSIA: Europe/Moscow (UTC+3) - UAE: Asia/Dubai (UTC+4) - PAKISTAN: Asia/Karachi (UTC+5) - BANGLADESH: Asia/Dhaka (UTC+6) - SINGAPORE: Asia/Singapore (UTC+8) - JAPAN: Asia/Tokyo (UTC+9) - AUSTRALIA: Australia/Sydney (UTC+10) - SOLOMON_ISLANDS: Pacific/Guadalcanal (UTC+11) - NEW_ZEALAND: Pacific/Auckland (UTC+12) The purpose of this update is to provide a comprehensive list of time zones for users to choose from when setting their time zone in the out-of-office feature. * update * fix * remove comment --------- Co-authored-by: Anik Dhabal Babu <81948346+anikdhabal@users.noreply.github.com> Co-authored-by: unknown <adhabal2002@gmail.com>
* fix: scheduleId not unset properly bug * Refactor almost complete, couple of tests needed * More testid fixes * Add migration to fixup schedule id bug * Remove migration * fix: Refactor useLockedFieldManager for correct useState use --------- Co-authored-by: zomars <zomars@me.com>
* dumb components for calendar settings * shadcn switch * update exports * update packages * add calendar settings atom to examples app * init calendar settings atom * refactors * fix import path * export type for calendar switch props * invalidate queries on deleting calendar credentials * replace calendars list with calendar settings wrapper * cleanup * update styling * refactors * cleanup * fix: missing key prop CalendarSettingsPlatformWrapper * Label as client components * Address client component build errors * Move QueryCell out of packages/lib * PR feedback * more feedback --------- Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com> Co-authored-by: Morgan <33722304+ThyMinimalDev@users.noreply.github.com> Co-authored-by: Morgan Vernay <morgan@cal.com> Co-authored-by: Joe Au-Yeung <j.auyeung419@gmail.com>
…wright-support-is-deprecated
emrysal
reviewed
Aug 13, 2024
emrysal
approved these changes
Aug 13, 2024
Contributor
emrysal
left a comment
There was a problem hiding this comment.
Quick typo fix, ready to merge, let's go 🚀
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What does this PR do?
This pull request updates several GitHub Actions workflows to improve caching, report handling, and clean-up processes.
What changed?
Caching:
Reports:
Clean-up:
How to test?
Why make this change?
To optimize CI/CD workflows by improving caching strategies, enhancing report management, and automating clean-up tasks.
Mandatory Tasks (DO NOT REMOVE)
Checklist