Skip to content

fix: keep personal data out of the diagnostics the dashboard renders #234

fix: keep personal data out of the diagnostics the dashboard renders

fix: keep personal data out of the diagnostics the dashboard renders #234

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: 22
cache: npm
- run: npm ci
- name: Type-check
run: npm run typecheck
- name: Test
run: npm test
- name: Catalog up to date (plugins.json, READMEs, version↔changelog)
run: npm run catalog:check
- name: Build & package every plugin
run: |
for d in */; do
if [ -f "${d}manifest.json" ]; then
echo "::group::build ${d%/}"
node package.mjs "${d%/}"
echo "::endgroup::"
fi
done
- name: Every built bundle loads as a plugin
run: node scripts/loader-check.mjs