Skip to content

Add Bluesky author posts plugin #212

Add Bluesky author posts plugin

Add Bluesky author posts plugin #212

Workflow file for this run

name: Validate registry
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
# GitHub Actions runner Node 20 -> Node 24 deprecation (effective 2026-06-02).
# Forces JS-based actions onto Node 24 ahead of the cutover.
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install ajv-cli
run: npm install -g ajv-cli ajv-formats
- name: Validate plugins.json against schema
run: ajv validate --spec=draft2020 -s schema.json -d plugins.json -c ajv-formats
- name: Lint JSON files
run: |
python3 -m json.tool plugins.json > /dev/null
python3 -m json.tool schema.json > /dev/null