docs: link to Ego Lite #15
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| quality: | |
| name: Quality gates | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 11.13.1 | |
| run_install: false | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Audit open-source boundary | |
| run: pnpm check:opensource | |
| - name: Validate installers | |
| shell: bash | |
| run: | | |
| sh -n install.sh | |
| pwsh -NoProfile -Command '[scriptblock]::Create((Get-Content -Raw ./install.ps1)) | Out-Null' | |
| - name: Check formatting | |
| run: pnpm fmt:check | |
| - name: Lint | |
| run: pnpm lint | |
| - name: Type check | |
| run: pnpm check-types | |
| - name: Build installable skill | |
| run: pnpm build | |
| - name: Verify generated files are current | |
| run: git diff --exit-code -- skills/prepare-video-publish/scripts | |
| - name: Audit production dependencies | |
| run: pnpm audit:dependencies |