Skip to content
This repository has been archived by the owner on Nov 13, 2023. It is now read-only.

Update readme to point to CLI monorepo - v1 #1026

Merged
merged 4 commits into from
Nov 13, 2023
Merged
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
10 changes: 10 additions & 0 deletions .github/workflows/imperative.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ jobs:
node-version: ${{ matrix.node-version }}
check-latest: true

- name: Downgrade Python
uses: actions/setup-python@v4
with:
python-version: '3.11.5'

- name: Disable Lint Annotations
run: |
echo "::remove-matcher owner=eslint-compact::"
Expand Down Expand Up @@ -98,6 +103,11 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 'lts/*'

- name: Downgrade Python
uses: actions/setup-python@v4
with:
python-version: '3.11.5'

- name: Install Dependencies
run: npm ci
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ jobs:
- name: Use Node.js LTS
uses: actions/setup-node@v3
with:
node-version: lts/*
node-version: 18.x

- name: Downgrade Python
uses: actions/setup-python@v4
with:
python-version: '3.11.5'

- name: Install Node Package Dependencies
run: npm ci
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

[![codecov](https://codecov.io/gh/zowe/imperative/branch/master/graph/badge.svg)](https://codecov.io/gh/zowe/imperative)

**This package has moved to the [Zowe CLI Monorepo](https://github.com/zowe/zowe-cli/)**

Imperative CLI Framework is a command processing system that lets you quickly build customized command-line interfaces. Focus on adding functionality for your users rather than creating CLI infrastructure. We provide you with all the tools to get started building your own CLI plug-ins.

## Software Requirements
Expand Down