Reject malformed decimal integer strings #466
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 (TypeScript) | |
| on: | |
| push: | |
| branches: ["nightly", "stable", "dev"] | |
| paths: &typescript-paths | |
| - "typescript/**" | |
| - "crates/universal-wallet/**" | |
| pull_request: | |
| types: [opened, synchronize] | |
| paths: *typescript-paths | |
| workflow_dispatch: {} | |
| jobs: | |
| check: | |
| name: Check | |
| runs-on: namespace-profile-sov-ubuntu-24-04-amd64-16x32-rust-1-93-v20260602;container.privileged=true;container.host-pid-namespace=true;overrides.cache-tag=typescript-ci-1-93 | |
| timeout-minutes: 30 | |
| defaults: | |
| run: | |
| working-directory: ./typescript | |
| steps: | |
| - uses: actions/checkout@v6 | |
| # Cache the pnpm store and turbo build outputs in a Namespace volume. | |
| - uses: namespacelabs/nscloud-cache-action@v1 | |
| with: | |
| cache: pnpm | |
| path: | | |
| ./typescript/.turbo | |
| # Node 24, pnpm, and Bun are all baked into the base image. | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Lint and Format | |
| run: pnpm run ci | |
| # Need to build wasm package first | |
| - name: Build | |
| run: pnpm build | |
| - name: Test | |
| run: pnpm coverage | |
| - name: Check docs build | |
| run: pnpm run docs |