Skip to content

Commit debe9ae

Browse files
committed
testing a fix for check error
1 parent c0e8032 commit debe9ae

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/validate-markdown.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v2 # checkout repo content
2222
- name: use the javascript environment from main
23-
run: git checkout main -- package.json
23+
run: |
24+
git fetch origin:main
25+
git checkout main -- package.json
2426
- uses: actions/setup-node@v4 # setup Node.js
2527
with:
2628
node-version: '14.x'

0 commit comments

Comments
 (0)