Skip to content

Commit

Permalink
Merge pull request #2509 from zowe/next-deployment
Browse files Browse the repository at this point in the history
fix(cicd): Update deployment workflow
  • Loading branch information
zFernand0 authored Oct 11, 2023
2 parents c1a504b + 7963c95 commit e6d675c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@ jobs:
with:
fetch-depth: 0

- name: Install pnpm
run: npm install -g pnpm

- name: Check Changelog Updated
uses: awharn/check_changelog_action@v1
with:
header: "## TBD Release"
lerna: true
pnpm: true
4 changes: 3 additions & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ jobs:
run: npm install -g pnpm lerna@6

- name: Build Source
run: pnpm
run: |
pnpm install
pnpm build
- name: Get Project Version
id: lerna
Expand Down
4 changes: 2 additions & 2 deletions samples/vue-webview-sample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
},
"scripts": {
"vscode:prepublish": "pnpm run compile",
"compile": "npx tsc -p ./ && cd webviews/vue-sample && pnpm --ignore-workspace i && pnpm build",
"compile": "pnpm --package=typescript dlx tsc -p ./ && cd webviews/vue-sample && pnpm --ignore-workspace i && pnpm build",
"lint": "eslint \"src/**/*.ts\"",
"watch": "npx tsc -watch -p ./"
"watch": "pnpm --package=typescript dlx tsc -watch -p ./"
},
"dependencies": {
"@zowe/zowe-explorer-api": "^2.10.0"
Expand Down

0 comments on commit e6d675c

Please sign in to comment.