release: v1.2.0 — mesh foundation + stability fixes #150
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| check: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| bun-version: ["1.3.14"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: ${{ matrix.bun-version }} | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Run full check against committed artifacts | |
| run: bun run check | |
| - name: Rebuild bundles for host platform | |
| run: bun run build:cli && bun run build:plugin | |
| - name: Run full check after rebuild | |
| run: bun run check |