feat: add GitHub PR creation to commit workflow (#601) #2256
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: Run Tests | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build-and-test: | |
| strategy: | |
| matrix: | |
| include: | |
| - os: blacksmith-4vcpu-ubuntu-2404 | |
| node-version: 18 | |
| - os: blacksmith-4vcpu-ubuntu-2404 | |
| node-version: 20 | |
| - os: blacksmith-4vcpu-ubuntu-2404 | |
| node-version: 22 | |
| - os: windows-latest | |
| node-version: 20 | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| IFLOW_API_KEY: ${{ secrets.IFLOW_API_KEY }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: 1.3.3 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v2 | |
| with: | |
| version: 10.8.0 | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Build project | |
| run: pnpm build | |
| - name: Type check | |
| run: pnpm typecheck | |
| - name: Check formatting | |
| if: runner.os != 'Windows' | |
| run: pnpm format | |
| - name: Run tests | |
| run: pnpm test | |
| - name: Run CLI integration test | |
| shell: bash | |
| run: | | |
| output=$(node ./dist/cli.mjs -m cerebras/zai-glm-4.6 -q --output-format json "hello") | |
| echo "$output" | |
| echo "$output" | node -e "JSON.parse(require('fs').readFileSync(0, 'utf-8'))" |