Make humanize findings accurate and actionable #105
Workflow file for this run
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: Website | |
| on: | |
| push: | |
| branches: [main] | |
| paths: &site-paths | |
| - "site/**" | |
| - ".claude/CLAUDE.md" | |
| - ".claude/settings*.json" | |
| - ".claude-plugin/marketplace.json" | |
| - ".agents/plugins/marketplace.json" | |
| - ".cursor-plugin/marketplace.json" | |
| - "plugins/**/.claude-plugin/plugin.json" | |
| - "plugins/**/gemini-extension.json" | |
| - ".codex/config.toml" | |
| - ".codex/config-*.toml" | |
| - "INSTALL.md" | |
| - ".github/workflows/site.yml" | |
| pull_request: | |
| branches: [main] | |
| paths: *site-paths | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Build websites | |
| runs-on: ubuntu-latest | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| cache-dependency-path: site/package-lock.json | |
| - run: npm ci --prefix site | |
| - run: npm run build --prefix site | |
| env: | |
| SITE_VARIANT: settings | |
| - run: npm run build --prefix site | |
| env: | |
| SITE_VARIANT: plugins |