Skip to content

Harden skills for production resilience (agent benchmark) #337

Harden skills for production resilience (agent benchmark)

Harden skills for production resilience (agent benchmark) #337

Workflow file for this run

name: Check
on:
push:
branches: [main]
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Format check
run: npm run format:check
- name: Spell check
run: npm run spellcheck
- name: Lint markdown
run: npm run lint:markdown
- name: Validate skills
run: npm run validate:skills
- name: Check links
uses: lycheeverse/lychee-action@v2
with:
args: |
--verbose
--no-progress
--max-retries 3
--timeout 20
--exclude-path 'node_modules/**'
--exclude-path '.git/**'
'**/*.md'
fail: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}