Skip to content

docs: warn about bcrypt 72-byte limit for basic auth #20

docs: warn about bcrypt 72-byte limit for basic auth

docs: warn about bcrypt 72-byte limit for basic auth #20

Workflow file for this run

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