Publish Ray tooling packages #826
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 | |
| timeout-minutes: 60 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: "20" | |
| package-manager-cache: false | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: "1.3.9" | |
| - name: Install dependencies (Node 20) | |
| run: timeout 300s bun install --frozen-lockfile | |
| - name: Release readiness gate (Node 20) | |
| run: timeout 1800s bun run release:gate | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: "22" | |
| package-manager-cache: false | |
| - name: Install dependencies (Node 22) | |
| run: timeout 300s bun install --frozen-lockfile | |
| - name: Release readiness gate (Node 22) | |
| run: timeout 1800s bun run release:gate |