Chore/update theme packages #204
This file contains hidden or 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 i | |
- 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 |