Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[v2] Update workflows and deps for technical currency #81

Open
wants to merge 2 commits into
base: zowe-v2-lts
Choose a base branch
from
Open
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions .github/workflows/zowe-cli-plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: zowe-cli-plugin

on:
on:
push:
pull_request:
workflow_dispatch:
Expand All @@ -23,8 +23,8 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [18.x, 20.x]
os:
node-version: [18.x, 20.x, 22.x]
os:
- windows-latest
- ubuntu-latest
- ${{ github.event.inputs.macos-type || 'macos-14'}}
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:

- name: Install Dependencies
run: npm ci

- name: Update Dependencies
id: npm-update
uses: zowe-actions/octorelease/script@v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ describe("Creating an MQ profile", () => {

it("should create an MQ profile successfully with fake connection details", () => {
const output = runCliScript(__dirname + "/__scripts__/create_mq_profile.sh", testEnvironment);
expect(output.stderr.toString()).toContain("The command 'profiles create' is deprecated.");
expect(output.stderr.toString()).toContain("The command 'profiles create mq' is deprecated.");
if (output.stdout.toString().indexOf("Profile created successfully!") < 0) {
expect(output.stderr.toString()).toEqual("");
}
Expand Down
Loading
Loading