fix(list): fill the width under justify-self: start parents (rich-text) #935
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Validate | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| validate: | |
| name: Validate CSS Variables | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Validate CSS variables | |
| run: npm run validate:styles | |
| - name: Test reference generator | |
| run: npm run test:scripts | |
| # Guards reference.md (JSDoc-derived) against drift on every PR. | |
| # changelog.md is intentionally NOT guarded here: it is synced from the | |
| # root CHANGELOG by the release pipeline (@semantic-release/exec), so it | |
| # only needs to be current at release time, not per-PR. | |
| - name: Check skill component reference is in sync | |
| shell: bash | |
| run: | | |
| set -e | |
| npm run generate:component-reference | |
| git diff --exit-code skills/nldd/reference.md \ | |
| || (echo "::error::skills/nldd/reference.md is verouderd. Draai 'npm run generate:component-reference' en commit het resultaat." && exit 1) |