forked from pimlicolabs/permissionless.js
-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (53 loc) · 1.83 KB
/
on-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
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
# bench:
# name: Coverage
# runs-on: ubuntu-latest
# steps:
# - name: Clone repository
# uses: actions/checkout@v3
# - name: Install dependencies
# uses: ./.github/actions/install-dependencies
# - name: Build
# run: bun run build
# - name: Run tests & coverage
# run: bun run test:ci
# env:
# ENTRYPOINT_ADDRESS: ${{ vars.ENTRYPOINT_ADDRESS }}
# FACTORY_ADDRESS: ${{ vars.FACTORY_ADDRESS }}
# TEST_CHAIN_ID: ${{ vars.TEST_CHAIN_ID }}
# TEST_PRIVATE_KEY: ${{ secrets.TEST_PRIVATE_KEY }}
# RPC_URL: ${{ secrets.RPC_URL }}
# BUNDLER_RPC_HOST: ${{ secrets.BUNDLER_RPC_HOST }}
# PIMLICO_BUNDLER_RPC_HOST: ${{ secrets.PIMLICO_BUNDLER_RPC_HOST }}
# PIMLICO_PAYMASTER_RPC_HOST: ${{ secrets.PIMLICO_PAYMASTER_RPC_HOST }}
# ACTIVE_SPONSORSHIP_POLICY: ${{ secrets.ACTIVE_SPONSORSHIP_POLICY }}
# DEBUG: true
# - name: Upload coverage reports to Codecov
# uses: codecov/codecov-action@v3
# env:
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
size:
name: Size
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Install dependencies
uses: ./.github/actions/install-dependencies
- name: Report bundle size
uses: andresz1/size-limit-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
package_manager: bun