Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,15 @@ jobs:
run: pnpm build

- name: Run Electron E2E tests (shard ${{ matrix.shard }})
env:
# Google Calendar E2E credentials — gated on the secrets being
# configured at the repo level. Empty strings when unset cause the
# Calendar suites' `CREDS_PRESENT` check to fail and the tests skip
# cleanly, so forks without access still pass CI.
GOOGLE_CALENDAR_E2E: '1'
GOOGLE_CALENDAR_E2E_REFRESH_TOKEN: ${{ secrets.GOOGLE_CALENDAR_E2E_REFRESH_TOKEN }}
GOOGLE_CALENDAR_E2E_CLIENT_ID: ${{ secrets.GOOGLE_CALENDAR_E2E_CLIENT_ID }}
GOOGLE_CALENDAR_E2E_CLIENT_SECRET: ${{ secrets.GOOGLE_CALENDAR_E2E_CLIENT_SECRET }}
run: |
# keytar -> libsecret needs an active dbus session + an unlocked
# gnome-keyring with the default "login" collection present.
Expand Down
Loading