cloudflare/kumo
Publicmirrored fromhttps://github.com/cloudflare/kumoAvailable
.github/workflows/pullrequest.yml
37lines · modecode
| 1 | name: Pull Request |
| 2 | |
| 3 | on: |
| 4 | pull_request: |
| 5 | paths-ignore: |
| 6 | - "*.md" |
| 7 | - ".changeset/**" |
| 8 | |
| 9 | concurrency: |
| 10 | group: ${{ github.workflow }}-${{ github.event.pull_request.number }} |
| 11 | cancel-in-progress: true |
| 12 | |
| 13 | jobs: |
| 14 | check: |
| 15 | timeout-minutes: 10 |
| 16 | runs-on: ubuntu-latest |
| 17 | steps: |
| 18 | - uses: actions/checkout@v4 |
| 19 | |
| 20 | - name: Install Dependencies |
| 21 | uses: ./.github/actions/install-dependencies |
| 22 | |
| 23 | - run: pnpm --filter @cloudflare/kumo build |
| 24 | - run: pnpm lint |
| 25 | - run: pnpm typecheck |
| 26 | |
| 27 | test: |
| 28 | timeout-minutes: 10 |
| 29 | runs-on: ubuntu-latest |
| 30 | steps: |
| 31 | - uses: actions/checkout@v4 |
| 32 | |
| 33 | - name: Install Dependencies |
| 34 | uses: ./.github/actions/install-dependencies |
| 35 | |
| 36 | - run: pnpm --filter @cloudflare/kumo build |
| 37 | - run: pnpm --filter @cloudflare/kumo test |
| 38 | |