Skip to content

Commit b8a1891

Browse files
committed
try setup node
1 parent 8dcab4d commit b8a1891

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/link-check-test.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,23 @@ jobs:
2828
name: Checkout
2929
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
3030

31+
- if: ${{ needs.see_if_should_skip.outputs.should_skip != 'true' }}
32+
name: Setup node
33+
uses: actions/setup-node@56899e050abffc08c2b3b61f3ec6a79a9dc3223d
34+
with:
35+
node-version: 14.x
36+
3137
- if: ${{ needs.see_if_should_skip.outputs.should_skip != 'true' }}
3238
name: Install
3339
run: npm ci
3440

41+
- if: ${{ github.repository == 'github/docs-internal' && needs.see_if_should_skip.outputs.should_skip != 'true' }}
42+
name: Clone early access
43+
run: npm run heroku-postbuild
44+
env:
45+
DOCUBOT_REPO_PAT: ${{ secrets.DOCUBOT_REPO_PAT }}
46+
GIT_BRANCH: ${{ github.ref }}
47+
3548
- if: ${{ needs.see_if_should_skip.outputs.should_skip != 'true' }}
3649
name: Build
3750
run: npm run build

0 commit comments

Comments
 (0)