-
-
Notifications
You must be signed in to change notification settings - Fork 48
68 lines (54 loc) · 1.48 KB
/
pull-request.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: Pull Request
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
verify:
name: Verify
uses: ./.github/workflows/verify.yml
secrets: inherit
preview:
name: Preview
needs: verify
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
uses: wevm/actions/.github/actions/pnpm@main
- name: Publish preview
run: |
pnpm changeset:prepublish
pnpx pkg-pr-new publish --pnpm --compact './packages/abitype'
env:
PKG_PR_NEW: true
bench:
name: Benchmark
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install dependencies
uses: wevm/actions/.github/actions/pnpm@main
- name: Run benchmarks
run: pnpm bench
size:
name: Size
runs-on: ubuntu-latest
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 }}