From 586f91ff152565cdd76cad7d754ec8589246892d Mon Sep 17 00:00:00 2001 From: Amitoj Singh Date: Thu, 10 Oct 2024 17:38:23 -0600 Subject: [PATCH] added bundleSize --- .github/workflows/bundleSize.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/bundleSize.yml diff --git a/.github/workflows/bundleSize.yml b/.github/workflows/bundleSize.yml new file mode 100644 index 0000000..3819ced --- /dev/null +++ b/.github/workflows/bundleSize.yml @@ -0,0 +1,15 @@ +name: "react-native-bundle-size" +on: [pull-request] + +jobs: + test_something: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: shwetsolanki/react-native-bundle-size@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} + ios-entry-file: "index.js" + android-entry-file: "index.js" + include-assets: "true" + include-source-maps: "true"