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 9bd5bd0Copy full SHA for 9bd5bd0
.github/workflows/ci.yml
@@ -10,14 +10,15 @@ on:
10
11
jobs:
12
test:
13
- name: Test
+ name: Build & Test
14
runs-on: ubuntu-latest
15
steps:
16
- uses: actions/checkout@v4
17
- uses: actions/setup-node@v4
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
@@ -31,3 +32,17 @@ jobs:
31
32
run: |
33
npm run lint
34
npm run test
35
+
36
+ size:
37
+ name: Compressed Size
38
+ runs-on: ubuntu-latest
39
+ timeout-minutes: 5
40
+ steps:
41
+ - uses: actions/checkout@v4
42
+ - uses: actions/setup-node@v4
43
+ with:
44
+ node-version: 22
45
+ cache: 'npm'
46
47
48
+ - uses: preactjs/compressed-size-action@v2
.github/workflows/size.yml
0 commit comments