build(deps): bump soroban-sdk from 27.0.2 to 27.0.3 in /contracts in the contracts-minor-and-patch group #58
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Pre-commit parity | |
| # Runs the same gates as .husky/pre-commit so CI catches what local hooks catch. | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| pre-commit-parity: | |
| name: Lint · typecheck · conflicts · TODOs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm install --legacy-peer-deps --ignore-scripts | |
| - name: Conflict markers | |
| run: node scripts/check-conflict-markers.mjs | |
| - name: TODO / FIXME policy | |
| run: node scripts/check-todos.mjs | |
| - name: Typecheck | |
| run: npm run typecheck | |
| - name: Lint client | |
| run: npm run lint -w client --if-present |