Skip to content

chore(deps): update all patch dependencies #2079

chore(deps): update all patch dependencies

chore(deps): update all patch dependencies #2079

Workflow file for this run

name: Diff
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
jobs:
Build:
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Pnpm
run: |
npm install -g corepack@latest --force
corepack enable
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install Dependencies and Build
run: |
pnpm install
- name: Build Demo Project
run: |
cd website
pnpm install
RSDOCTOR=1 pnpm run build
- name: Report Compressed Size
uses: web-infra-dev/rsdoctor-action@main
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
file_path: 'website/doc_build/diff-rsdoctor/**/rsdoctor-data.json'
target_branch: 'main'