mirror of
https://github.com/mintlify/docs.git
synced 2026-09-14 13:35:46 +08:00
00d565ef2a
* WIP
* remove plugin-specific MCP info
* remove artifact digest
* fix stray writeFile import line left over from digest removal
* 💅
* bug bot
34 lines
780 B
YAML
34 lines
780 B
YAML
name: Validate agent context
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- agent-context/**
|
|
- .github/workflows/agent-context-ci.yml
|
|
- .github/workflows/sync-agent-context.yml
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- agent-context/**
|
|
- .github/workflows/agent-context-ci.yml
|
|
- .github/workflows/sync-agent-context.yml
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
validate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: actions/setup-node@v6
|
|
with:
|
|
node-version: 24
|
|
package-manager-cache: false
|
|
- run: npm test
|
|
working-directory: agent-context
|
|
- run: npm run check
|
|
working-directory: agent-context
|
|
- run: npm run build
|
|
working-directory: agent-context
|