mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-02 03:08:21 +08:00
46 lines
1.1 KiB
YAML
46 lines
1.1 KiB
YAML
name: 📦 Package Size Report
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- 'master'
|
|
types: [opened, synchronize]
|
|
|
|
jobs:
|
|
size-report:
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
CI_JOB_NUMBER: 1
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v2
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
|
|
- name: Get pnpm store directory
|
|
id: pnpm-cache
|
|
run: |
|
|
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
|
|
|
|
- uses: actions/cache@v3
|
|
name: Setup pnpm cache
|
|
with:
|
|
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
|
|
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-pnpm-store-
|
|
|
|
- uses: preactjs/compressed-size-action@v2
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
pattern: './dist/element-plus/dist/*.{js,mjs,css}'
|
|
env:
|
|
NODE_OPTIONS: --max-old-space-size=4096
|