From b930c956bfe6d7304b2ac822a9d1b28d1bd2c184 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Fri, 17 Jul 2020 15:16:53 +0200 Subject: [PATCH] ci: add size-limit action (#376) * ci: add size-limit action * ci: remove bad options [skip ci] --- .github/workflows/size-limit.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/size-limit.yml diff --git a/.github/workflows/size-limit.yml b/.github/workflows/size-limit.yml new file mode 100644 index 00000000..05d6649e --- /dev/null +++ b/.github/workflows/size-limit.yml @@ -0,0 +1,15 @@ +name: 'size' +on: + pull_request: + branches: + - master +jobs: + size: + runs-on: ubuntu-latest + env: + CI_JOB_NUMBER: 1 + steps: + - uses: actions/checkout@v1 + - uses: andresz1/size-limit-action@v1.4.0 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} -- 2.47.3