Skip to content

Reject malformed decimal integer strings #466

Reject malformed decimal integer strings

Reject malformed decimal integer strings #466

Workflow file for this run

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