Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/typescript.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ jobs:
path: sdk-ts
ref: ${{ inputs.version }}

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: '10'
run_install: false

- uses: actions/setup-node@v4
with:
node-version: 18
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will bump this in another PR since we're using 22 as our default elsewhere.

Expand All @@ -101,10 +107,10 @@ jobs:

# Build TS SDK if using repo
# Don't build during install phase since we're going to explicitly build
- run: npm ci --ignore-scripts
- run: pnpm install --frozen-lockfile --ignore-scripts
if: ${{ inputs.version-is-repo-ref }}
working-directory: ./sdk-ts
- run: npm run build
- run: pnpm run build
if: ${{ inputs.version-is-repo-ref }}
working-directory: ./sdk-ts
env:
Expand Down
Loading