Skip to content

Commit 61f7b95

Browse files
committed
Checkout repo for build
1 parent 4ee4722 commit 61f7b95

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ jobs:
3333
name: Build the SDK
3434
runs-on: ubuntu-latest
3535
steps:
36+
- name: Checkout Repo
37+
uses: actions/checkout@v4
38+
with:
39+
# This makes Actions fetch all Git history so build-changed script can diff properly.
40+
fetch-depth: 0
3641
# Install Chrome so the correct version of webdriver can be installed by chromedriver when
3742
# setting up the repo. This must be done to build and execute Auth properly.
3843
- name: install Chrome stable

.github/workflows/test-changed.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ jobs:
2626
name: Build the SDK
2727
runs-on: ubuntu-latest
2828
steps:
29+
- name: Checkout Repo
30+
uses: actions/checkout@v4
31+
with:
32+
# This makes Actions fetch all Git history so build-changed script can diff properly.
33+
fetch-depth: 0
2934
# Install Chrome so the correct version of webdriver can be installed by chromedriver when
3035
# setting up the repo. This must be done to build and execute Auth properly.
3136
- name: install Chrome stable

0 commit comments

Comments
 (0)