Bump master for telemtry, in-TEE proto handling, etc. #288
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
| # .github/workflows/ci.yml | |
| name: CI | |
| on: | |
| push: | |
| branches: [master, develop] | |
| pull_request: | |
| branches: [master, develop] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - name: Install Bun | |
| uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: 1.3.9 | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Generate protobuf types | |
| run: bun run proto-gen | |
| - name: Run Biome lint | |
| run: bunx @biomejs/biome lint . | |
| - name: Run tests | |
| run: bun test | |
| # Gate PRs on the same strict build the publish workflow runs on tag push | |
| # (dts-bundle-generator + strict tsc). Without this, develop can merge code | |
| # that only fails at publish time, blocking releases. | |
| - name: Build project | |
| run: bun run build |