build(deps): bump express from 4.19.2 to 4.21.0 #380
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: Build Size Report | |
on: | |
# Note! you can't safely use "pull_request_target" here | |
# This workflow is mostly useful for "internal PRs" | |
# External PRs won't be able to post a PR comment | |
# See https://github.com/preactjs/compressed-size-action/issues/54 | |
# See https://securitylab.github.com/research/github-actions-preventing-pwn-requests | |
pull_request: | |
branches: | |
- main | |
jobs: | |
report-build-size-diff: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- uses: preactjs/compressed-size-action@v2 | |
with: | |
repo-token: '${{ secrets.GITHUB_TOKEN }}' | |
build-script: 'build:en' | |
pattern: './packages/core/dist/**/*.{js,css}' | |
compression: 'none' |