Bump devalue from 5.1.1 to 5.3.2 in /docs #361
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: Run lint checks on the project | |
on: | |
push: | |
paths: | |
- 'typescript/**' | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
workflow_dispatch: # Allows manual triggering on any branch | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: typescript | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@9a9194f87191a7e9055e3e9b95b8cfb13023bb08 | |
- name: Link Checker | |
uses: lycheeverse/lychee-action@c053181aa0c3d17606addfe97a9075a32723548a | |
with: | |
fail: true | |
args: --scheme=https . --exclude-all-private --accept '999, 429' --max-concurrency 1 --retry-wait-time 5 --user-agent "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" --exclude https://docs.anthropic.com/en/api/getting-started | |
- name: Install dependencies | |
run: npm install | |
- name: Run linting | |
run: npm run lint |