chore(release): 1.0.0 #975
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: Code Quality | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "sdk/**" | |
| - "starter/**" | |
| - "addons/**" | |
| - "community/**" | |
| pull_request: | |
| paths: | |
| - "sdk/**" | |
| - "starter/**" | |
| - "addons/**" | |
| - "community/**" | |
| jobs: | |
| check-sdk: | |
| name: Core Checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24.14.0 | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Build SDK | |
| run: pnpm build | |
| working-directory: sdk | |
| - name: Run tests | |
| run: pnpm test | |
| working-directory: sdk | |
| - name: Typecheck Addons | |
| run: pnpm typecheck:addons | |
| - name: Typecheck Starter | |
| run: pnpm typecheck:starter | |
| check-community: | |
| name: Community Checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24.14.0 | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Build SDK | |
| run: pnpm build | |
| working-directory: sdk | |
| - name: Build Community | |
| run: pnpm build | |
| working-directory: community | |
| - name: Run tests | |
| run: pnpm test | |
| working-directory: community | |
| - name: Typecheck Community | |
| run: pnpm typecheck:community |