Skip to content

docs: add missing community standards (#35) #27

docs: add missing community standards (#35)

docs: add missing community standards (#35) #27

Workflow file for this run

name: Source Of Truth Check
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
check-architecture:
name: source-of-truth-check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Generate runtime adapters
run: node scripts/generate.js
- name: Check adapter drift
run: |
if ! git diff --exit-code --name-only; then
echo "::error::Runtime adapters are out of sync with canonical src. Run 'node scripts/generate.js' and commit the changes."
git diff --stat
exit 1
fi
- name: Run full test suite
run: node --test tests/unit/*.test.js tests/transforms/*.test.js tests/integration/*.test.js