feat: directive lifecycle hooks in v-for
, v-if
and component
#1124
Workflow file for this run
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: size data | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
- minor | |
permissions: | |
contents: read | |
env: | |
PUPPETEER_SKIP_DOWNLOAD: 'true' | |
jobs: | |
upload: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.node-version' | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- run: pnpm run size | |
- name: Download Previous Size Data | |
uses: dawidd6/action-download-artifact@v2 | |
if: ${{ github.event_name == 'push' }} | |
with: | |
branch: main | |
workflow: size-data.yml | |
event: push | |
name: size-data | |
path: temp/size-prev | |
if_no_artifact_found: warn | |
- name: Upload Size Data | |
uses: actions/upload-artifact@v4 | |
with: | |
name: size-data | |
path: temp/size | |
- name: Save PR number | |
if: ${{ github.event_name == 'pull_request' }} | |
run: echo ${{ github.event.number }} > ./pr.txt | |
- uses: actions/upload-artifact@v4 | |
if: ${{ github.event_name == 'pull_request' }} | |
with: | |
name: pr-number | |
path: pr.txt | |
- name: Size report | |
if: ${{ github.event_name == 'push' }} | |
run: pnpm tsx scripts/size-report.ts |