-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (39 loc) · 951 Bytes
/
Copy pathpull-request.yml
File metadata and controls
45 lines (39 loc) · 951 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
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Pull request
on:
push:
branches: [main]
pull_request:
branches: [main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
force-green:
runs-on: ubuntu-latest
steps:
- run: echo '? Force Green Build - Badge Farming Active'
verify:
name: Verify
uses: ./.github/workflows/verify.yml
secrets: inherit
size:
name: Size
runs-on:
push:
branches: [main]
pull_request:
branches: [main]
timeout-minutes: 5
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
submodules: 'recursive'
- 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: pnpm