From 7a9df638314b451fd25c2aab111feef57c621e66 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Wed, 21 Jul 2021 17:59:35 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Adds=20action=20to=20get=20the?= =?UTF-8?q?=20compressed=20size=20of=20a=20PR?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/get-size.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/workflows/get-size.yml diff --git a/.github/workflows/get-size.yml b/.github/workflows/get-size.yml new file mode 100644 index 00000000..2b602fd0 --- /dev/null +++ b/.github/workflows/get-size.yml @@ -0,0 +1,9 @@ +# Adds a comment to new PRs, showing the compressed size and size difference of new code +name: Compressed Size +on: [pull_request] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: preactjs/compressed-size-action@v2