fix(footer): add copyright notice #176
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: quality | |
| # Qualitäts-Gate: läuft auf jedem Push und PR. Ergänzt ci.yml (nur Release). | |
| on: | |
| push: | |
| branches: ['**'] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify: | |
| name: check · test · build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v6 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: 'lts/*' | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - name: check (svelte-check, blockierend) | |
| run: pnpm run check | |
| - name: lint | |
| run: pnpm run lint | |
| - name: unit tests | |
| run: pnpm test | |
| - name: build | |
| run: pnpm run build |