chore(deps): bump tsx from 4.23.1 to 4.23.5 in the tooling group across 1 directory #261
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 SDK: Publish to npm (dry run)" | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "lib/ts-sdk/**" # Trigger only if files in the `lib/ts-sdk/` directory are changed | |
| - ".github/workflows/ci-lib-ts-sdk-publish.yml" | |
| defaults: | |
| run: | |
| working-directory: ./lib/ts-sdk | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: .nvmrc | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v6 | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Dry run publish | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| run: pnpm publish --access public --dry-run --no-git-checks |