Skip to content
This repository has been archived by the owner on Jan 5, 2022. It is now read-only.

Commit

Permalink
Merge branch 'refs/heads/master' into generateVDM
Browse files Browse the repository at this point in the history
# Conflicts:
#	package-lock.json
#	package.json
  • Loading branch information
Florian Richter committed Dec 9, 2019
2 parents a0516bc + 25719be commit eaa278e
Show file tree
Hide file tree
Showing 18 changed files with 2,060 additions and 5,328 deletions.
22 changes: 17 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,33 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
node-version: [10.x, 12.x]

steps:
- uses: actions/checkout@v1
- name: Get npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"
- name: Cache node modules
uses: actions/cache@v1
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install and test
run: |
npm install
npm test
- name: Install Dependencies
run: npm ci
- name: Run tests
run: npm test
env:
CI: true
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ $ npm install -g @sap-cloud-sdk/cli
$ sap-cloud-sdk COMMAND
running command...
$ sap-cloud-sdk (-v|--version|version)
@sap-cloud-sdk/cli/0.0.7 darwin-x64 node-v11.12.0
@sap-cloud-sdk/cli/0.0.10 darwin-x64 node-v11.12.0
$ sap-cloud-sdk --help [COMMAND]
USAGE
$ sap-cloud-sdk COMMAND
Expand Down Expand Up @@ -97,7 +97,7 @@ EXAMPLE
$ sap-cloud-sdk add-approuter
```

_See code: [src/commands/add-approuter.ts](https://github.com/SAP/cloud-sdk-cli/blob/v0.0.7/src/commands/add-approuter.ts)_
_See code: [src/commands/add-approuter.ts](https://github.com/SAP/cloud-sdk-cli/blob/v0.0.10/src/commands/add-approuter.ts)_

## `sap-cloud-sdk add-cx-server`

Expand All @@ -115,7 +115,7 @@ EXAMPLE
$ sap-cloud-sdk add-cx-server
```

_See code: [src/commands/add-cx-server.ts](https://github.com/SAP/cloud-sdk-cli/blob/v0.0.7/src/commands/add-cx-server.ts)_
_See code: [src/commands/add-cx-server.ts](https://github.com/SAP/cloud-sdk-cli/blob/v0.0.10/src/commands/add-cx-server.ts)_

## `sap-cloud-sdk autocomplete [SHELL]`

Expand All @@ -138,7 +138,7 @@ EXAMPLES
$ sap-cloud-sdk autocomplete --refresh-cache
```

_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v0.1.4/src/commands/autocomplete/index.ts)_
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v0.1.5/src/commands/autocomplete/index.ts)_

## `sap-cloud-sdk help [COMMAND]`

Expand All @@ -155,7 +155,7 @@ OPTIONS
--all see all commands in CLI
```

_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v2.2.1/src/commands/help.ts)_
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v2.2.2/src/commands/help.ts)_

## `sap-cloud-sdk help-page`

Expand All @@ -169,7 +169,7 @@ OPTIONS
-h, --help show CLI help
```

_See code: [src/commands/help-page.ts](https://github.com/SAP/cloud-sdk-cli/blob/v0.0.7/src/commands/help-page.ts)_
_See code: [src/commands/help-page.ts](https://github.com/SAP/cloud-sdk-cli/blob/v0.0.10/src/commands/help-page.ts)_

## `sap-cloud-sdk init [PROJECTDIR]`

Expand All @@ -194,7 +194,7 @@ EXAMPLES
$ sap-cloud-sdk init --help
```

_See code: [src/commands/init.ts](https://github.com/SAP/cloud-sdk-cli/blob/v0.0.7/src/commands/init.ts)_
_See code: [src/commands/init.ts](https://github.com/SAP/cloud-sdk-cli/blob/v0.0.10/src/commands/init.ts)_

## `sap-cloud-sdk package`

Expand Down Expand Up @@ -223,7 +223,7 @@ EXAMPLES
$ sap-cloud-sdk package --include="package.json,package-lock.json,index.js,dist/**/*" --exclude="**/*.java"
```

_See code: [src/commands/package.ts](https://github.com/SAP/cloud-sdk-cli/blob/v0.0.7/src/commands/package.ts)_
_See code: [src/commands/package.ts](https://github.com/SAP/cloud-sdk-cli/blob/v0.0.10/src/commands/package.ts)_
<!-- commandsstop -->

## Contribute
Expand Down
Loading

0 comments on commit eaa278e

Please sign in to comment.