Developer Portal #132
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: Verify PR | |
on: | |
pull_request: | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
- name: Use Node.js 🐰 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install Node Modules 💾 | |
run: npm ci | |
- name: Lint and Spellcheck 🧶 | |
run: npm run lint | |
- name: Set up mdBook 📚 | |
uses: ./.github/workflows/common/set-up-mdbook | |
with: | |
token: ${{secrets.GITHUB_TOKEN}} | |
- name: Build mdBook 📚 | |
run: mdbook build |