-
-
Notifications
You must be signed in to change notification settings - Fork 22
53 lines (43 loc) · 1.35 KB
/
compressed-size.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# name: Compressed Size
# env:
# NODE_OPTIONS: --max-old-space-size=6144
# on:
# pull_request:
# types:
# - 'opened'
# - 'synchronize'
# paths-ignore:
# - '**/*.md'
# concurrency:
# group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
# cancel-in-progress: true
# jobs:
# build:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: setup node.js
# uses: actions/setup-node@v4
# with:
# node-version: 20.x
# - name: Install pnpm
# uses: pnpm/action-setup@v4
# with:
# version: latest
# run_install: false
# - name: Get pnpm store directory
# id: pnpm-cache
# run: |
# echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
# - uses: actions/cache@v4
# name: Setup pnpm cache
# with:
# path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
# key: ${{ runner.os }}-pnpm-store-compressed-size-${{ hashFiles('**/pnpm-lock.yaml') }}
# restore-keys: |
# ${{ runner.os }}-pnpm-store-compressed-size-
# - uses: preactjs/compressed-size-action@v2
# with:
# build-script: 'build:packs'
# repo-token: '${{ secrets.GIT_HUB_TOKEN }}'
# pattern: './packages/*/{dist,compiled}/**/*.js'