Improve proxy security (#100) #45
Workflow file for this run
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: Markdown Linter | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '**/*.md' | |
- '.remarkrc.js' | |
- '.remarkignore' | |
- 'pnpm-lock.yaml' | |
- '.github/workflows/docs.yml' | |
pull_request: | |
paths: | |
- '**/*.md' | |
- '.remarkrc.js' | |
- '.remarkignore' | |
- 'pnpm-lock.yaml' | |
- '.github/workflows/docs.yml' | |
permissions: | |
contents: read | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Install tools from asdf config | |
uses: ai/asdf-cache-action@v1 | |
- name: Install dependencies | |
run: pnpm install --ignore-scripts | |
- name: Check docs | |
run: pnpm test:markdown |