We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe98a0d commit 59d6d0dCopy full SHA for 59d6d0d
.github/workflows/ci.yml
@@ -7,6 +7,9 @@ on:
7
branches:
8
- main
9
10
+permissions:
11
+ pull-requests: write
12
+
13
jobs:
14
lint:
15
runs-on: ubuntu-latest
@@ -55,6 +58,11 @@ jobs:
55
58
- name: Build package
56
59
run: yarn build
57
60
61
+ - name: Calculate Size
62
+ uses: andresz1/size-limit-action@v1
63
+ with:
64
+ github_token: ${{ secrets.GITHUB_TOKEN }}
65
66
test-website:
67
68
name: Test Website
.size-limit.json
@@ -2,5 +2,9 @@
2
{
3
"path": "dist/esm/index.mjs",
4
"limit": "2 kB"
5
+ },
6
+ {
+ "path": "dist/esm/patterns/index.mjs",
+ "limit": "3 kB"
}
]
0 commit comments