Add v6.8.0-beta.4 to CHANGELOG #70
This file contains hidden or 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: "Size: main" | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: 'Build' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
with: | |
node-version: 22 | |
- run: pnpm build | |
- name: "Get estimated sizes for production outputs" | |
id: main-dev | |
run: | | |
mkdir -p main | |
node ./bin/minify-assets.mjs > ./main/out.txt | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: sizes-main | |
path: main/ | |
overwrite: true |