feat(scheduling): add Queue tab with provider lanes and execution analytics #147
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: Tests | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Build CLI | |
| run: yarn build | |
| - name: Install web dependencies | |
| run: cd web && yarn install --frozen-lockfile | |
| - name: Run tests | |
| run: yarn test | |
| core-flow-smoke: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Build CLI | |
| run: yarn build | |
| - name: Install web dependencies | |
| run: cd web && yarn install --frozen-lockfile | |
| - name: Run core flow smoke tests | |
| run: yarn vitest run packages/cli/src/__tests__/scripts/core-flow-smoke.test.ts |