251148c3ff
## Summary - add repository-wide quality tooling and verification scaffolding, including CI workflows, pnpm workspace setup, ESLint/Prettier/markdown checks, and generated-output verification helpers - reorganize skill sources and generation flow by introducing canonical `_source` variants, generator/manifests, reusable helper abstractions, and shared web-automation/browser utilities - clean up and expand documentation so the root README flows into docs and skill docs, with clearer development, reviewer, installer, and workflow guidance ## Notable changes - docs flow and consistency cleanup across `README.md`, `docs/README.md`, and related docs - new scripts for `check`, docs verification, generated-file verification, shell portability, and safe directory replacement - refactors in Atlassian and web-automation skill runtimes to reduce duplication and centralize reusable code - changelog, development documentation, and CI surface updates ## Test Plan - [ ] `pnpm run check` - [ ] review generated/manifests and skill sync outputs - [ ] smoke-check docs flow from `README.md` to `docs/README.md` to skill docs ## Notes - this branch currently includes tracked `skills/web-automation/shared/node_modules` content that should be reviewed carefully as potentially noisy/accidental committed artifacts Co-authored-by: Stefano Fiorini <stefano.fiorini@firsthorizon.com> Reviewed-on: #1
41 lines
1.0 KiB
YAML
41 lines
1.0 KiB
YAML
name: check-online
|
|
|
|
# Runs full external link checking on a schedule and on manual trigger.
|
|
# Kept separate from the main `check` workflow so everyday push/PR CI
|
|
# is not slowed down or broken by transient network issues.
|
|
|
|
on:
|
|
schedule:
|
|
# Every Monday at 09:00 UTC
|
|
- cron: "0 9 * * 1"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check-online:
|
|
name: check-online (ubuntu-latest)
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install shellcheck
|
|
run: sudo apt-get update -q && sudo apt-get install -y -q shellcheck
|
|
|
|
- name: Install ripgrep
|
|
run: sudo apt-get install -y -q ripgrep
|
|
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "22"
|
|
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@v4
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Run full quality suite with external link checking
|
|
run: pnpm run verify:docs:online
|