feat(core): validate subject for illegal whitespace characters #824
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: test transport-node with local modules | |
| on: | |
| push: | |
| paths: | |
| - "core/**" | |
| - "jetstream/**" | |
| - "kv/**" | |
| - "obj/**" | |
| - "services/**" | |
| branches: | |
| - "*" | |
| pull_request: | |
| branches: [main] | |
| types: [opened] | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| deno-version: [2.4.x] | |
| node-version: [24.x] | |
| name: test node transport with local dependencies | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git Checkout Core | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Use Deno Version ${{ matrix.deno-version }} | |
| uses: denoland/setup-deno@v1 | |
| with: | |
| deno-version: ${{ matrix.deno-version }} | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install nats-server | |
| uses: aricart/[email protected] | |
| with: | |
| repo: nats-io/nats-server | |
| name: nats-server | |
| cache: true | |
| - name: Build workspace | |
| run: | | |
| npm install --workspaces | |
| npm run build --workspaces | |
| - name: Test Node Transport with local dependencies | |
| working-directory: transport-node | |
| env: | |
| CI: true | |
| run: | | |
| npm test |