chore(a11y): update links in footer and delete legal.proconnect.gouv.… #775
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: 📖 tsdoc-markdown | |
on: | |
push: | |
branches: | |
- "**" | |
- "!master" | |
jobs: | |
docs: | |
name: 📖 Generate tsdocs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
cache: "npm" | |
node-version-file: package.json | |
- run: npm ci | |
env: | |
CYPRESS_INSTALL_BINARY: 0 | |
- run: npm run docs --if-present --workspaces | |
- uses: EndBug/add-and-commit@v9 | |
with: | |
add: . | |
default_author: github_actions | |
message: "🤖 Documentation auto-update" |