Fix build errors v/5.4.0 #118
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 workflow will check if the incoming pull request includes any broken links | |
name: Check for dead links | |
on: | |
pull_request: | |
branches: [main, 'v/*'] | |
workflow_dispatch: | |
jobs: | |
check-links: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Check for broken internal links | |
run: | | |
npm i | |
npm run-script check-links-local |