adding showcase for mongodb #186
Workflow file for this run
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: 21 | |
- 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 |