Skip to content

Commit 11aa370

Browse files
authored
Merge pull request actions#93 from akamai/develop
Release CLI version 1.4.0
2 parents e794d0e + 619feda commit 11aa370

File tree

9 files changed

+3620
-2710
lines changed

9 files changed

+3620
-2710
lines changed

.github/workflows/node.js.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,25 @@ jobs:
1919

2020
strategy:
2121
matrix:
22-
node-version: [8.x, 10.x, 12.x, 14.x, 15.x]
22+
node-version: [10.x, 12.x, 14.x, 15.x]
2323

2424
steps:
2525
- uses: actions/checkout@v2
26-
- name: Use Node.js ${{ matrix.node-version }}
27-
uses: actions/setup-node@v1
26+
- run: |
27+
grep resolved package-lock.json > result.txt
28+
if grep -q akamai result.txt; then echo "package-lock.json contains invalid entries" ; exit 1; fi
29+
shell: bash --noprofile --norc -x {0}
30+
name: Validate package-lock.json file
31+
32+
- uses: actions/setup-node@v1
33+
name: Node.js ${{ matrix.node-version }}
2834
with:
2935
node-version: ${{ matrix.node-version }}
3036
- run: npm install
3137
- run: npm run build --if-present
38+
3239
- run: touch /tmp/test-edgerc
3340
- run: ./akamai-sandbox --edgerc /tmp/test-edgerc help
41+
name: Run sandbox command
3442
env:
3543
AKAMAI_CLI_CACHE_PATH: /tmp

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ The Sandbox command line interface (CLI) expedites the process of creating an is
55
To use this tool you need:
66
* [Akamai CLI](https://github.com/akamai/cli) installed. If you have a Mac with brew installed, run this command: `brew install akamai`.
77
* An API client that contains both the Sandbox and Property Manager APIs with read-write access. Follow the steps in [Get Started with APIs](https://developer.akamai.com/api/getting-started) to learn how to configure credentials to access the API.
8-
* Node version 8+
9-
* Java version 8+
8+
* Node versions supported: any active LTS, maintenance LTS and current version (according to [nodejs schedule](https://nodejs.org/en/about/releases/)), currently: 10.x, 12.x, 14.x and 15.x
9+
* Java version 8
1010

1111
## Quick Start
1212

cli.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"commands": [
66
{
77
"name": "sandbox",
8-
"version": "1.3.0",
8+
"version": "1.4.0",
99
"description": "Manage Akamai Sandbox environments.",
1010
"bin": "https://github.com/akamai/cli-sandbox/releases/download/{{.Version}}/akamai-{{.Name}}-{{.Version}}-{{.OS}}-{{.Arch}}{{.BinSuffix}}"
1111
}

0 commit comments

Comments
 (0)