Skip to content

Commit

Permalink
update workflows
Browse files Browse the repository at this point in the history
Signed-off-by: Rudy Flores <[email protected]>
  • Loading branch information
rudyflores committed Aug 28, 2023
1 parent 4fd4dd2 commit 33078cc
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- run: |
npm install -g pnpm
pnpm install --frozen-lockfile --shamefully-hoist=true
pnpm install
- name: Check Vulnerabilities
run: pnpm audit --prod
1 change: 1 addition & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ jobs:
uses: awharn/check_changelog_action@v1
with:
header: "## TBD Release"
lerna: true
2 changes: 1 addition & 1 deletion .github/workflows/circular-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- run: |
npm install -g pnpm
pnpm install --frozen-lockfile --shamefully-hoist=true
pnpm install
- name: Run madge to check for circular dependencies
run: pnpm madge
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- run: |
npm install -g pnpm
pnpm install --frozen-lockfile --shamefully-hoist=true
pnpm install
- name: Lint
run: pnpm lint
2 changes: 1 addition & 1 deletion .github/workflows/theia-zowe-explorer-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- run: npm install -g pnpm

# install dependencies
- run: pnpm install --frozen-lockfile --shamefully-hoist=true
- run: pnpm install

# 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 --frozen-lockfile --shamefully-hoist=true
- run: pnpm config set network-timeout 60000 && pnpm install

- 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 --frozen-lockfile --shamefully-hoist=true
- run: pnpm config set network-timeout 60000 && pnpm install

- run: pnpm --filter zowe-explorer-ftp-extension test
env:
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
"engines": {
"vscode": "^1.53.2"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@zowe/cli": "7.16.6",
"vscode-nls": "4.1.2"
Expand Down
2 changes: 1 addition & 1 deletion packages/zowe-explorer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1920,7 +1920,7 @@
"test": "pnpm test:unit",
"vscode:prepublish": "gulp build && webpack --mode production && pnpm updateStrings && pnpm run compile-web",
"updateStrings": "node ../../scripts/stringUpdateScript.js && prettier --write --loglevel warn ./i18n package.nls*",
"package": "vsce package --no-dependencies --allow-star-activation && node ../../scripts/mv-pack.js vscode-extension-for-zowe vsix",
"package": "vsce package --no-dependencies && node ../../scripts/mv-pack.js vscode-extension-for-zowe vsix",
"license": "node ../../scripts/updateLicenses.js",
"watch": "gulp build && webpack --mode development --watch --info-verbosity verbose",
"compile": "tsc -b",
Expand Down

0 comments on commit 33078cc

Please sign in to comment.