Skip to content

Commit

Permalink
exlude twitter links from linkcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
Omer Siddiqui authored and Omer Siddiqui committed May 8, 2024
1 parent 2dd6219 commit d1d36bb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,7 @@ jobs:
run: yarn build
# Run linkcheck, propagate linkcheck failure through grep pipe
- name: Linkcheck
run: set -o pipefail; yarn linkcheck 2>/dev/null | grep "Getting links from\|BROKEN"
run: |
set -o pipefail
yarn linkcheck 2>/dev/null | grep -v "https://twitter.com" | grep "Getting links from\|BROKEN"
continue-on-error: false

0 comments on commit d1d36bb

Please sign in to comment.