prep #179
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
name: Check Website Build | |
on: | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
build-website: | |
name: Build Website | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/[email protected] | |
- name: Setup Node | |
uses: actions/[email protected] | |
with: | |
node-version: 16 | |
- name: Build Website | |
working-directory: ./website | |
run: | | |
npm install | |
npm run build | |
- name: Search for Broken Links | |
run: | | |
node ./scripts/check-legend-application-documentation-broken-links.js |