IX-829: Normalize decimal response strings #65
Workflow file for this run
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: ci | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| id-token: write | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node: [22, 24] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - uses: pnpm/action-setup@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: pnpm | |
| - name: Install | |
| run: pnpm install --frozen-lockfile | |
| - name: Typecheck | |
| run: pnpm typecheck | |
| - name: Lint | |
| run: pnpm lint | |
| - name: Test | |
| run: pnpm test | |
| - name: Upload coverage to Codecov | |
| if: matrix.node == 22 | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| use_oidc: true | |
| files: packages/cli/coverage/lcov.info,packages/core/coverage/lcov.info | |
| - name: Typedoc | |
| run: pnpm typedoc | |
| - name: Build | |
| run: pnpm build | |
| - name: Publish dry-run | |
| if: github.event_name == 'push' && github.ref == 'refs/heads/main' && matrix.node == 22 | |
| run: pnpm --filter @inflowpayai/inflow publish --dry-run --no-git-checks |