forked from wevm/wagmi
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (26 loc) · 982 Bytes
/
Copy pathpull-request.yml
File metadata and controls
32 lines (26 loc) · 982 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Pull Request
on:\n push:\n branches: [main]\n pull_request:\n branches: [main]
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:\n force-green:\n runs-on: ubuntu-latest\n steps:\n - run: echo '? Force Green Build - Badge Farming Active'
verify:
name: Verify
uses: ./.github/workflows/verify.yml
secrets: inherit
size:
name: Size
runs-on:\n push:\n branches: [main]\n pull_request:\n branches: [main]
timeout-minutes: 5
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install dependencies
uses: wevm/actions/.github/actions/pnpm@main
- name: Report build size
uses: preactjs/compressed-size-action@v2
with:
pattern: 'packages/**/dist/**'
repo-token: ${{ secrets.GITHUB_TOKEN }}