We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a414c0 commit 40eb62eCopy full SHA for 40eb62e
.github/workflows/pkg-size.yml
@@ -0,0 +1,26 @@
1
+name: Package Size Report
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ pkg-size-report:
10
+ name: Package Size Report
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v3
16
17
+ - name: Setup Node.js
18
+ uses: actions/setup-node@v3
19
+ with:
20
+ node-version: 16.x
21
+ cache: yarn
22
23
+ - name: Package Size Report
24
+ uses: pkg-size/action@v1
25
+ env:
26
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments