docs: warn about bcrypt 72-byte limit for basic auth #20
Workflow file for this run
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: devel | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - .github/workflows/devel.yml | |
| - .vitepress/** | |
| - src/** | |
| - README.md | |
| pull_request: | |
| paths: | |
| - .github/workflows/devel.yml | |
| - .vitepress/** | |
| - src/** | |
| - README.md | |
| jobs: | |
| docs: | |
| name: Project docs check | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 1 | |
| - name: Setup | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 26 | |
| cache: 'yarn' | |
| - name: Install dependencies | |
| run: | | |
| yarn | |
| # - name: Check spelling | |
| # uses: crate-ci/typos@master | |
| # with: | |
| # config: ./.github/workflows/config/typos.toml | |
| # files: src/. | |
| - name: Check formatting | |
| run: | | |
| yarn format:check | |
| - name: Build docs | |
| run: | | |
| yarn typecheck | |
| - name: Build docs | |
| run: | | |
| yarn build |