chore(deps): bump react and react-dom in /documentation #215
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: Package Size Report | |
on: | |
pull_request: | |
branches: [main] | |
permissions: | |
pull-requests: write | |
jobs: | |
pkg-size-report: | |
name: Package Size Report | |
runs-on: ubuntu-latest | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: "lts/*" | |
- name: Package size report | |
uses: pkg-size/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
hide-files: "*.{js,css}.map" |