Skip to content

Commit 756e801

Browse files
committed
Make sure we check out everything
This is probably overkill but it's the simple option.
1 parent c0e8032 commit 756e801

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/schema-tests.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
- uses: actions/checkout@v1 # checkout repo content
2424
- uses: actions/setup-node@v4 # setup Node.js
2525
with:
26+
fetch-depth: 0
2627
node-version: '20.x'
2728
- name: Install dependencies from main
2829
run: |

.github/workflows/validate-markdown.yaml

+4-1
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@ jobs:
1919

2020
steps:
2121
- uses: actions/checkout@v2 # checkout repo content
22+
with:
23+
fetch-depth: 0
2224
- name: use the javascript environment from main
23-
run: git checkout main -- package.json
25+
run: |
26+
git checkout main -- package.json
2427
- uses: actions/setup-node@v4 # setup Node.js
2528
with:
2629
node-version: '14.x'

0 commit comments

Comments
 (0)