feat(meta): Add new icons and update manifest for CleanPlate app #3
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: [ master, main ] | |
| pull_request: | |
| branches: [ master, main ] | |
| jobs: | |
| ci: | |
| name: CI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: latest | |
| - name: Install dependencies (bun) | |
| run: bun install | |
| - name: Lint (Biome) | |
| run: bun run lint | |
| - name: Biome CI checks | |
| run: bunx @biomejs/biome ci ./src | |
| - name: Type-check (TypeScript) | |
| run: bunx tsc --noEmit | |
| - name: Run tests (Vitest) | |
| run: bun run test |