Skip to content

Commit 5b46d3e

Browse files
committed
Pin chrome stable version 112
1 parent f1b1c5a commit 5b46d3e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/test-changed-auth.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,13 @@ jobs:
1414
steps:
1515
# install Chrome first, so the correct version of webdriver can be installed by chromedriver when setting up the repo
1616
- name: install Chrome stable
17+
# Install Chrome version 112.0.5615.49 as test starts to fail on version 111.
18+
# We will unpin, once version 112 becomes stable.
1719
run: |
1820
sudo apt-get update
19-
sudo apt-get install google-chrome-stable
21+
sudo apt-get install wget
22+
sudo wget http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_112.0.5615.49_amd64.deb
23+
sudo apt-get install -f ./google-chrome-stable_112.0.5615.49_amd64.deb --allow-downgrades
2024
- name: Checkout Repo
2125
uses: actions/checkout@master
2226
with:

packages/auth/src/api/authentication/email_link.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ export interface SignInWithEmailLinkRequest {
3030
tenantId?: string;
3131
}
3232

33+
// add a comment to trigger packages/auth CI tests
3334
export interface SignInWithEmailLinkResponse extends IdTokenResponse {
3435
email: string;
3536
isNewUser: boolean;

0 commit comments

Comments
 (0)