Skip to content
Merged
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
14 changes: 14 additions & 0 deletions .github/workflows/sdk-cli-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,13 @@ jobs:
- name: Install Dependencies
run: npm ci

# Same reason as build-and-test: a subpath import of a sibling needs that
# sibling's dist/, which a bare `npm ci` does not produce. #604 added this to
# build-and-test and left the other two jobs with the identical sequence, so
# v1.3.5 got past build-and-test and died here instead, on the same TS2307s.
- name: Build every workspace
run: npm run build

- name: Build
working-directory: ${{ env.CLI_DIR }}
run: npm run build
Expand Down Expand Up @@ -325,6 +332,13 @@ jobs:
- name: Install Dependencies
run: npm ci

# Same reason as build-and-test: a subpath import of a sibling needs that
# sibling's dist/, which a bare `npm ci` does not produce. #604 added this to
# build-and-test and left the other two jobs with the identical sequence, so
# v1.3.5 got past build-and-test and died here instead, on the same TS2307s.
- name: Build every workspace
run: npm run build

- name: Build
working-directory: ${{ env.CLI_DIR }}
run: npm run build
Expand Down
Loading