From 9e6cb1faaa851d0f578303abc685c75290496749 Mon Sep 17 00:00:00 2001 From: Franck R Date: Wed, 16 Feb 2022 11:36:02 +1100 Subject: [PATCH] Add size-limit to PR checks (#537) --- .github/workflows/size-limit.yml | 14 ++++++++++++++ 1 file changed, 14 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 0000000000..63d14ff4b6 --- /dev/null +++ b/.github/workflows/size-limit.yml @@ -0,0 +1,14 @@ +name: "size" +on: + pull_request: + +jobs: + size: + runs-on: ubuntu-latest + env: + CI_JOB_NUMBER: 1 + steps: + - uses: actions/checkout@v1 + - uses: andresz1/size-limit-action@v1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }}