cloudflare/kumo

Public

mirrored fromhttps://github.com/cloudflare/kumoAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
886b20f7067e7fc14460caf2887662e26f88fb99

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.github/workflows/pullrequest.yml

37lines · modecode

1name: Pull Request
2
3on:
4 pull_request:
5 paths-ignore:
6 - "*.md"
7 - ".changeset/**"
8
9concurrency:
10 group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
11 cancel-in-progress: true
12
13jobs:
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