fix: SSR withoutHTML模式下,包一层<div id="root">{app}</div> #2360
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: Compressed Size | |
env: | |
NODE_OPTIONS: --max-old-space-size=6144 | |
on: | |
pull_request: | |
types: | |
- 'opened' | |
- 'synchronize' | |
paths-ignore: | |
- 'examples/**' | |
- 'docs/**' | |
- '**/*.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@v2 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2.2.4 | |
- name: Use latest LTS Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
registry-url: 'https://registry.npmjs.org/' | |
cache: 'pnpm' | |
- uses: preactjs/compressed-size-action@v2 | |
with: | |
build-script: 'build' | |
repo-token: '${{ secrets.GITHUB_TOKEN }}' | |
pattern: './packages/*/{dist,compiled}/**/*.{js,d.ts}' |