{"id":16323244,"url":"https://github.com/lironer/bundlemon-action","last_synced_at":"2026-05-07T08:34:29.994Z","repository":{"id":189125191,"uuid":"642900517","full_name":"LironEr/bundlemon-action","owner":"LironEr","description":"A free open-source GitHub action that helps you to monitor your bundle size on every commit and alerts you on changes.","archived":false,"fork":false,"pushed_at":"2024-10-25T09:53:02.000Z","size":1447,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-30T02:28:03.262Z","etag":null,"topics":["bundlesize","github","github-actions","hacktoberfest","monitor","size"],"latest_commit_sha":null,"homepage":"https://app.bundlemon.dev","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LironEr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"LironEr","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":"lironer","otechie":null,"lfx_crowdfunding":null,"custom":["https://www.paypal.com/donate?hosted_button_id=YZL6KM2UGB5ML"]}},"created_at":"2023-05-19T15:48:31.000Z","updated_at":"2024-10-25T09:53:00.000Z","dependencies_parsed_at":"2023-08-18T12:08:33.866Z","dependency_job_id":"7bde924f-4779-4471-b8d4-b1567b521f6c","html_url":"https://github.com/LironEr/bundlemon-action","commit_stats":null,"previous_names":["lironer/bundlemon-action"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LironEr%2Fbundlemon-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LironEr%2Fbundlemon-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LironEr%2Fbundlemon-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LironEr%2Fbundlemon-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LironEr","download_url":"https://codeload.github.com/LironEr/bundlemon-action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238207641,"owners_count":19434095,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bundlesize","github","github-actions","hacktoberfest","monitor","size"],"created_at":"2024-10-10T22:54:20.312Z","updated_at":"2025-10-25T20:30:50.562Z","avatar_url":"https://github.com/LironEr.png","language":"TypeScript","funding_links":["https://github.com/sponsors/LironEr","https://issuehunt.io/r/lironer","https://www.paypal.com/donate?hosted_button_id=YZL6KM2UGB5ML"],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://github.com/LironEr/bundlemon\"\u003e\u003cimg src=\"https://github.com/LironEr/bundlemon/raw/master/assets/bundlemon-optimized.svg\" alt=\"BundleMon logo\" width=\"150px\" height=\"150px\" /\u003e\u003c/a\u003e\n\u003c/div\u003e\n\n# BundleMon GitHub Action\n\nEasily use [BundleMon](https://github.com/LironEr/bundlemon) to monitor your bundle size on every commit from GitHub Actions\n\n## Inputs\n\n| Name              | Required | Default        | Description                                                                                                          |\n| ----------------- | :------: | -------------- | -------------------------------------------------------------------------------------------------------------------- |\n| bundlemon-args    |    -     |                | Optional args for [BundleMon cli](https://github.com/LironEr/bundlemon#cli-usage). Example: --subProject \"some-name\" |\n| bundlemon-version |    -     | Latest version | BundleMon cli version                                                                                                |\n| working-directory |    -     |                | The working directory                                                                                                |\n| fail-on-error     |    -     | `true`         | Should fail on error                                                                                                 |\n\n## Usage\n\nBundleMon config must be present to run this action, See [BundleMon setup](https://github.com/LironEr/bundlemon#setup) for more info.\n\n```yaml\nname: Build\n\non:\n  push:\n    branches: [main]\n  pull_request:\n    types: [synchronize, opened, reopened]\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n      - name: Setup Node\n        uses: actions/setup-node@v4\n        with:\n          node-version: '20'\n\n      - name: Install dependencies\n        run: yarn\n\n      - name: Build\n        run: yarn build\n\n      - name: BundleMon\n        uses: lironer/bundlemon-action@v1\n```\n\n### Example run BundleMon on multiple projects\n\n```yaml\nname: Build\n\non:\n  push:\n    branches: [main]\n  pull_request:\n    types: [synchronize, opened, reopened]\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n      - name: Setup Node\n        uses: actions/setup-node@v4\n        with:\n          node-version: '20'\n\n      - name: Install dependencies\n        run: yarn\n\n      - name: Build\n        run: yarn build\n\n      - name: BundleMon Project A\n        uses: lironer/bundlemon-action@v1\n        with:\n          bundlemon-args: --config project-a-config.json --subProject \"project-a\"\n\n      - name: BundleMon Project B\n        uses: lironer/bundlemon-action@v1\n        with:\n          bundlemon-args: --config project-b-config.json --subProject \"project-b\"\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flironer%2Fbundlemon-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flironer%2Fbundlemon-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flironer%2Fbundlemon-action/lists"}