feat(observability): ship Grafana dashboards and Prometheus alerts #993
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: Lint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| lint: | |
| name: Run on Ubuntu | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone the code | |
| uses: actions/checkout@v7 | |
| - name: Setup Go | |
| uses: actions/setup-go@v7 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| - name: Install tools with asdf | |
| uses: asdf-vm/actions/install@v4 | |
| with: | |
| only: | | |
| golangci-lint | |
| nodejs | |
| - name: Run linter | |
| run: make lint | |
| plugin: | |
| name: Validate Claude plugin | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone the code | |
| uses: actions/checkout@v7 | |
| - name: Install tools with asdf | |
| uses: asdf-vm/actions/install@v4 | |
| with: | |
| only: nodejs | |
| - name: Check plugin references are in sync with docs | |
| run: | | |
| make sync-plugin | |
| git add -A plugin | |
| git status --porcelain plugin | |
| git diff --cached --exit-code -- plugin | |
| - name: Install Claude Code | |
| run: npm install -g @anthropic-ai/claude-code | |
| - name: Validate plugin and marketplace | |
| run: claude plugin validate . |