File tree Expand file tree Collapse file tree
packages/react-native-nitro-storage/scripts Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66
77env :
88 TZ : UTC
9- BUN_VERSION : " 1.3.9 "
9+ BUN_VERSION : " 1.3.10 "
1010
1111jobs :
1212 quality :
1313 name : Lint, Typecheck & Unit Tests
1414 runs-on : ubuntu-latest
1515
1616 steps :
17- - uses : actions/checkout@v4
17+ - uses : actions/checkout@v6
1818
1919 - uses : oven-sh/setup-bun@v2
2020 with :
2121 bun-version : ${{ env.BUN_VERSION }}
2222
23- - uses : actions/cache@v4
23+ - uses : actions/cache@v5
2424 with :
2525 path : |
2626 ~/.bun/install/cache
2727 node_modules
2828 packages/*/node_modules
29+ apps/*/node_modules
2930 key : ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
3031 restore-keys : ${{ runner.os }}-bun-
3132
32- - run : bun install
33+ - run : bun install --frozen-lockfile
3334
3435 - name : Lint
3536 run : bun run lint
Original file line number Diff line number Diff line change @@ -79,8 +79,8 @@ function printMetric(metric) {
7979
8080const thresholds = {
8181 memorySetOpsPerSecond : 2_000_000 ,
82- // GitHub-hosted runners can dip below 8M due to noisy CPU allocation .
83- memoryGetOpsPerSecond : 5_500_000 ,
82+ // GitHub-hosted runners have high CPU variance; keep threshold realistic .
83+ memoryGetOpsPerSecond : 4_000_000 ,
8484 memoryBatchOpsPerSecond : 1_000_000 ,
8585 diskSetOpsPerSecond : 200_000 ,
8686 diskGetOpsPerSecond : 250_000 ,
You can’t perform that action at this time.
0 commit comments