ci(docker): ensure that the docker images are tagged correctly #1104
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: | |
pull_request_target: | |
types: [labeled, synchronize, reopened] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
if: contains(github.event.pull_request.labels.*.name, 'analyze') | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- uses: preactjs/compressed-size-action@v2 | |
with: | |
strip-hash: "\\b\\w{8}\\." | |
pattern: './dist/**/*.{js,css,html,json,woff2,svg,png}' | |
exclude: '{./dist/manifest.json,./dist/build.zip,**/*.map,**/node_modules/**}' |