We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8f308b commit 516e35bCopy full SHA for 516e35b
.github/workflows/size-report.yml
@@ -28,22 +28,20 @@ jobs:
28
- run: PUPPETEER_SKIP_DOWNLOAD=1 pnpm install
29
- run: pnpm run size
30
31
- - name: Upload Size Report
32
- uses: actions/upload-artifact@v3
33
- with:
34
- name: size-report
35
- path: temp/size
36
-
37
- name: Download Previous Size Report
38
id: download-artifact
39
uses: dawidd6/action-download-artifact@v2
40
- continue-on-error: true
41
with:
42
- pr: ${{github.event.pull_request.number}}
43
- # branch: main
+ branch: main
44
name: size-report
45
- workflow_conclusion: ''
46
path: temp/size-prev
+ if_no_artifact_found: warn
+
+ - name: Upload Size Report
+ uses: actions/upload-artifact@v3
+ with:
+ name: size-report
+ path: temp/size
47
48
- name: Compare size
49
run: node scripts/size-report.js > size.md
0 commit comments