Create new production release #2036
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: | |
| pull_request: | |
| branches: [ main, staging ] | |
| jobs: | |
| build: | |
| name: Running ci | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [ 18 ] | |
| env: | |
| CI: true | |
| steps: | |
| - name: 🛒 Checkout code | |
| uses: actions/checkout@v3 | |
| - name: 🧩 Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: 1.3.1 | |
| - name: 🧩 Install dependencies | |
| run: bun install | |
| - name: Check versions | |
| run: | | |
| bun --version | |
| node --version | |
| bunx tsc -v | |
| - name: Build | |
| run: bun run build | |
| - name: ✏️ Typecheck | |
| run: bun run typecheck | |
| # We currently do not run the linter as we have too many issues. | |
| # - name: 🧪 Lint | |
| # run: bun run lint |