Skip to content

Commit

Permalink
Added fetch depth back
Browse files Browse the repository at this point in the history
  • Loading branch information
codebycarson committed Dec 5, 2024
1 parent f2055e1 commit c72e10f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch the full history instead of a shallow clone
- uses: actions/setup-node@v3
with:
node-version: 20
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch the full history instead of a shallow clone
- name: Use Node.js
uses: actions/setup-node@v2
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/deploydocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch the full history instead of a shallow clone
- name: Setup Node.js 18.x
uses: actions/setup-node@v3
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/notify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
steps:
- name: Check out code
uses: actions/checkout@v2
with:
fetch-depth: 0 # Fetch the full history instead of a shallow clone

- name: Delay for 90 seconds to allow NPM package to propagate
run: sleep 90
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch the full history instead of a shallow clone
- name: Setup Node.js 18.x
uses: actions/setup-node@v3
with:
Expand Down

0 comments on commit c72e10f

Please sign in to comment.