Skip to content

Commit

Permalink
add missing build command to workflows
Browse files Browse the repository at this point in the history
Signed-off-by: Rudy Flores <[email protected]>
  • Loading branch information
rudyflores committed Sep 20, 2023
1 parent 91d22ac commit 4ecc555
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/theia-zowe-explorer-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ jobs:
# install pnpm
- run: npm install -g pnpm

# install dependencies
- run: pnpm install
# install dependencies & build
- run: |
pnpm install
pnpm build
# copy test data file needed for build :-(
- name: Create test data file
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zowe-explorer-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
# install pnpm
- run: npm install -g pnpm

- run: pnpm config set network-timeout 60000 && pnpm install
- run: pnpm config set network-timeout 60000 && pnpm install && pnpm build

- run: pnpm test
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zowe-explorer-ftp-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
# install pnpm
- run: npm install -g pnpm

- run: pnpm config set network-timeout 60000 && pnpm install
- run: pnpm config set network-timeout 60000 && pnpm install && pnpm build

- run: pnpm --filter zowe-explorer-ftp-extension test
env:
Expand Down

0 comments on commit 4ecc555

Please sign in to comment.