File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ means that capability is n/a here.
1111| ` validate ` | Pre-push gate (` --changed ` /` --all ` /` --fast ` ) | ` bin/ci-local ` |
1212| ` test ` | Run tests | ` (cd react_on_rails && bundle exec rake run_rspec) ` + ` pnpm run test ` |
1313| ` lint ` | Lint / format (` rake autofix ` to fix) | ` (cd react_on_rails && bundle exec rake lint) ` |
14- | ` build ` | Build / type-check | ` pnpm run build ` + ` pnpm run type-check ` |
14+ | ` build ` | Build / type-check | ` pnpm run build ` + ` pnpm run type-check ` + ` rake rbs:validate ` |
1515| ` docs ` | Docs checks | ` script/check-docs-sidebar ` + ` bin/check-links ` |
1616| ` ci-detect ` | CI change detector | ` script/ci-changes-detector origin/main ` |
1717
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22# Build and type-check.
33set -euo pipefail
4+ cd " $( CDPATH= cd -- " $( dirname -- " $0 " ) /../.." && pwd) "
45pnpm run build
56pnpm run type-check
7+ ( cd react_on_rails && bundle exec rake rbs:validate )
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22# CI change detector (inspect suite routing). Optional base ref (default origin/main).
33set -euo pipefail
4+ cd " $( CDPATH= cd -- " $( dirname -- " $0 " ) /../.." && pwd) "
45exec script/ci-changes-detector " ${1:- origin/ main} "
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22# Docs checks (sidebar coverage + markdown links).
33set -euo pipefail
4+ cd " $( CDPATH= cd -- " $( dirname -- " $0 " ) /../.." && pwd) "
45script/check-docs-sidebar
56bin/check-links
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22# Lint / format check. Fix with: (cd react_on_rails && bundle exec rake autofix)
33set -euo pipefail
4+ cd " $( CDPATH= cd -- " $( dirname -- " $0 " ) /../.." && pwd) "
45( cd react_on_rails && bundle exec rake lint )
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22# Install dependencies.
33set -euo pipefail
4+ cd " $( CDPATH= cd -- " $( dirname -- " $0 " ) /../.." && pwd) "
45exec script/bootstrap
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22# Run tests (Ruby gem specs + JS).
33set -euo pipefail
4+ cd " $( CDPATH= cd -- " $( dirname -- " $0 " ) /../.." && pwd) "
45( cd react_on_rails && bundle exec rake run_rspec )
56pnpm run test
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22# Pre-push gate. Flags pass through (--changed narrow, --all broad, --fast quick).
33set -euo pipefail
4+ cd " $( CDPATH= cd -- " $( dirname -- " $0 " ) /../.." && pwd) "
45exec bin/ci-local " $@ "
You can’t perform that action at this time.
0 commit comments