[Feat] 파운데이션, 컴포넌트, 그래픽 페이지 마크업 #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: bundling-size | |
on: | |
pull_request: | |
types: [opened, ready_for_review] | |
branches: | |
- main | |
jobs: | |
check-size: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install Pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
run_install: false | |
- name: Install Dependency | |
run: pnpm install --no-frozen-lockfile | |
- name: Check Sizes | |
uses: preactjs/[email protected] | |
with: | |
repo-token: "${{ secrets.TOKEN }}" | |
pattern: "./packages/wow-ui/dist/**/*" | |
compression: "none" | |