Code cleanup, expand README, fix some minor bugs #56
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: Pull requests Tests | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build_doc: | |
name: "Build documentation" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/Hydrogen | |
cache: 'pnpm' | |
- name: Install only developer dependencies | |
run: pnpm install -D | |
- name: Build the goddamn documentation | |
run: pnpm run jsdoc |