Skip to content

Commit

Permalink
Make sure we check out everything
Browse files Browse the repository at this point in the history
This is probably overkill but it's the simple option.
  • Loading branch information
handrews committed Feb 7, 2024
1 parent c0e8032 commit 756e801
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/schema-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- uses: actions/checkout@v1 # checkout repo content
- uses: actions/setup-node@v4 # setup Node.js
with:
fetch-depth: 0
node-version: '20.x'
- name: Install dependencies from main
run: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/validate-markdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ jobs:

steps:
- uses: actions/checkout@v2 # checkout repo content
with:
fetch-depth: 0
- name: use the javascript environment from main
run: git checkout main -- package.json
run: |
git checkout main -- package.json
- uses: actions/setup-node@v4 # setup Node.js
with:
node-version: '14.x'
Expand Down

0 comments on commit 756e801

Please sign in to comment.