Scorecard: kuatsu/react-native-boost

Public GitHub Actions data, last 30 days. Updated 6/26/2026, 4:00:45 AM.

119 min/mo
recoverable — ~19% of CI time · across 6 patterns · ≈$0.71/mo
13.0%
failure rate, 30d
7m
mean time to recover
6 workflows · 246 runs (8.2/day) · 626 CI-min · ≈$3.75 GitHub-hosted cost (30d)

Waste detected

Biggest wins first — each with the exact config fix.

Workflow runs on both push and pull_request — Build example app

~$0.67/mo · ~112 min

Pushing to a branch and opening a PR triggers two runs. Pick one (usually `pull_request`) and exclude branch pushes for non-default branches.

on:
  push:
    branches: [main]
  pull_request:

No concurrency control — Test & build

~$0.04/mo · ~7 min

Add a `concurrency:` block keyed on branch to cancel superseded runs when devs push twice quickly.

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true

No concurrency control — Close stale issues and PRs

~$0.00/mo · ~0 min

Add a `concurrency:` block keyed on branch to cancel superseded runs when devs push twice quickly.

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true

No job timeout — Close stale issues and PRs

~$0.00/mo · ~0 min

No job sets `timeout-minutes`, so a hung step can run to GitHub's 6-hour default. Add `timeout-minutes` to each job.

jobs:
  build:
    runs-on: ubuntu-latest
    timeout-minutes: 15

No job timeout — Test & build

~$0.00/mo · ~0 min

No job sets `timeout-minutes`, so a hung step can run to GitHub's 6-hour default. Add `timeout-minutes` to each job.

jobs:
  build:
    runs-on: ubuntu-latest
    timeout-minutes: 15

No path filters on triggers — Test & build

~$0.00/mo · ~0 min

Runs on every push/PR with no `paths:` filter, so docs-only changes still trigger full CI. Add a `paths:` filter if that's common.

on:
  pull_request:
    paths:
      - 'src/**'
      - 'package.json'

Want this on every push?

This scorecard is a one-time snapshot. Install the free GitHub App to track this repo continuously — new regressions caught as they land, trends over time, on your public and private repos. Team adds the offending commit on the PR + Slack alerts.

Install & monitor this repo →

Not ready to install? Get this report by email. No spam — unsubscribe anytime.

Share this scorecard: https://gitspider.com/scan/kuatsu/react-native-boost
Add the badge to your README

Live CI-health badge → GitSpider badge

[![GitSpider](https://gitspider.com/badge/kuatsu/react-native-boost.svg)](https://gitspider.com/scan/kuatsu/react-native-boost)