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 8f41e93 commit 5e6eb49Copy full SHA for 5e6eb49
.github/workflows/ci.yml
@@ -18,16 +18,28 @@ jobs:
18
with:
19
node-version: 22
20
cache: npm
21
+ cache-dependency-path: '**/package-lock.json'
22
23
- name: Install NPM dependencies
24
run: npm ci
25
- - name: build
26
- run: npm run build
27
-
28
- name: test
29
env:
30
CI: true
31
run: |
32
npm run lint
33
npm run test
+
+ size:
34
+ name: Compressed Size
35
+ runs-on: ubuntu-latest
36
+ timeout-minutes: 5
37
+ steps:
38
+ - uses: actions/checkout@v4
39
+ - uses: actions/setup-node@v4
40
+ with:
41
+ node-version: 22
42
+ cache: 'npm'
43
44
45
+ - uses: preactjs/compressed-size-action@v2
.github/workflows/size.yml
0 commit comments