chore(deps): update dependency @types/node to v24 #9082
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 data | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - minor | |
| pull_request: | |
| branches: | |
| - main | |
| - minor | |
| permissions: | |
| contents: read | |
| env: | |
| PUPPETEER_SKIP_DOWNLOAD: 'true' | |
| jobs: | |
| upload: | |
| if: github.repository == 'vuejs/core' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4.2.0 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: '.node-version' | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install | |
| - run: pnpm run size | |
| - name: Save PR number & base branch | |
| if: ${{github.event_name == 'pull_request'}} | |
| run: | | |
| echo ${{ github.event.number }} > ./temp/size/number.txt | |
| echo ${{ github.base_ref }} > ./temp/size/base.txt | |
| - name: Upload Size Data | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: size-data | |
| path: temp/size |