Improve 1B inference quality loop #31
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: Quality checks | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" | |
| jobs: | |
| quality: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: "20" | |
| package-manager-cache: false | |
| - name: Enable pnpm via Corepack (Node 20) | |
| run: | | |
| corepack enable | |
| corepack prepare pnpm@9.12.3 --activate | |
| - name: Install dependencies (Node 20) | |
| run: pnpm install --frozen-lockfile | |
| - name: Release readiness gate (Node 20) | |
| run: pnpm run release:gate | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: "22" | |
| package-manager-cache: false | |
| - name: Enable pnpm via Corepack (Node 22) | |
| run: | | |
| corepack enable | |
| corepack prepare pnpm@9.12.3 --activate | |
| - name: Install dependencies (Node 22) | |
| run: pnpm install --frozen-lockfile | |
| - name: Release readiness gate (Node 22) | |
| run: pnpm run release:gate |