update dependencies #146
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: "Desktop Biome CI" | |
| on: | |
| push: | |
| paths: | |
| - apps/desktop/** | |
| - .github/workflows/desktop-ci.yml | |
| - package.json | |
| - bun.lock | |
| - biome.jsonc | |
| pull_request: | |
| paths: | |
| - apps/desktop/** | |
| - .github/workflows/desktop-ci.yml | |
| - package.json | |
| - bun.lock | |
| - biome.jsonc | |
| jobs: | |
| ci: | |
| runs-on: macos-15 | |
| timeout-minutes: 15 | |
| concurrency: | |
| group: desktop-ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Cache Bun downloads | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.bun/install/cache | |
| key: ${{ runner.os }}-bun-${{ hashFiles('bun.lock') }} | |
| restore-keys: ${{ runner.os }}-bun- | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Setup Biome | |
| uses: biomejs/setup-biome@v2 | |
| with: | |
| biome-version: latest | |
| - name: Verify Biome installed | |
| run: biome --version | |
| - name: Run Desktop CI | |
| working-directory: apps/desktop | |
| run: bun run ci |