File tree 1 file changed +4
-7
lines changed
1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ permissions:
13
13
jobs :
14
14
unit-test :
15
15
runs-on : ubuntu-latest
16
+ if : github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
16
17
steps :
17
18
- uses : actions/checkout@v3
18
19
32
33
33
34
e2e-test :
34
35
runs-on : ubuntu-latest
36
+ if : github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
35
37
steps :
36
38
- uses : actions/checkout@v3
37
39
57
59
58
60
lint-and-test-dts :
59
61
runs-on : ubuntu-latest
62
+ if : github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
60
63
steps :
61
64
- uses : actions/checkout@v3
62
65
82
85
83
86
size :
84
87
runs-on : ubuntu-latest
88
+ if : github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
85
89
env :
86
90
CI_JOB_NUMBER : 1
87
91
steps :
@@ -98,10 +102,3 @@ jobs:
98
102
99
103
- run : PUPPETEER_SKIP_DOWNLOAD=1 pnpm install
100
104
- run : pnpm run size
101
-
102
- # - name: Check build size
103
-
104
- # with:
105
- # github_token: ${{ secrets.GITHUB_TOKEN }}
106
- # build_script: size
107
- # files: packages/vue/dist/vue.global.prod.js packages/runtime-dom/dist/runtime-dom.global.prod.js packages/size-check/dist/index.js
You can’t perform that action at this time.
0 commit comments