-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moving check-links out of main workflow to make it non blocking for r…
…eleases
- Loading branch information
Azfaar Qureshi
committed
Dec 16, 2020
1 parent
3820224
commit 72e37f3
Showing
2 changed files
with
23 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: check-links | ||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
|
||
check-links: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Setup Node | ||
uses: actions/setup-node@v2-beta | ||
with: | ||
node-version: '9' | ||
- name: Check links in markdown docs | ||
run: | | ||
pushd $HOME | ||
npm install --save-dev markdown-link-check@3.8.1 | ||
popd | ||
- run: ./.github/workflows/check-links/check-links.sh |