dashy/.github/workflows/get-size.yml
2021-09-12 21:45:41 +01:00

13 lines
367 B
YAML

# Adds a comment to new PRs, showing the compressed size and size difference of new code
name: 🌈 Get Compressed Size
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: preactjs/compressed-size-action@v2
with:
repo-token: ${{ secrets.BOT_GITHUB_TOKEN }}
pattern: "./dist/**/**"