Skip to content

docs(observability): document the dashboards, alerts and local stack #990

docs(observability): document the dashboards, alerts and local stack

docs(observability): document the dashboards, alerts and local stack #990

Workflow file for this run

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 .