Skip to content
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
16 changes: 8 additions & 8 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 14.x
- run: npx lerna bootstrap
- run: npx lerna run compile
- run: npx lerna run integration/aws-deploy --stream
Expand All @@ -29,7 +29,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 14.x
- run: npx lerna bootstrap
- run: npx lerna run compile
- run: npx lerna run integration/aws-func --stream
Expand All @@ -47,7 +47,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 14.x
- run: npx lerna bootstrap
- run: npx lerna run compile
- run: npx lerna run integration/aws-end-to-end --stream
Expand All @@ -66,7 +66,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 14.x
- run: npx lerna bootstrap
- run: npx lerna run compile
- run: npx lerna run integration/aws-nuke --stream
Expand All @@ -82,7 +82,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 14.x
- run: npx lerna bootstrap
- run: npx lerna run compile
- run: npx lerna run integration/cli --stream
Expand All @@ -94,7 +94,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 14.x
- run: npx lerna bootstrap
- run: npx lerna run compile
- run: npx lerna run integration/local --stream
Expand All @@ -113,11 +113,11 @@ jobs:
driver: 'docker'
- uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 14.x
- run: sudo snap install helm --classic
- run: kubectl create ns booster-my-store-kubernetes
- run: kubectl config set-context --current --namespace=booster-my-store-kubernetes
- run: minikube start --namespace=booster-my-store-kubernetes
- run: npx lerna bootstrap
- run: npx lerna run compile
- run: npx lerna run integration/k8s-deploy --stream
- run: npx lerna run integration/k8s-deploy --stream
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 14.x
- name: Bootstrapping project
run: npx lerna bootstrap
- name: Fixing linting and formatting issues
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- uses: actions/setup-node@main
with:
node-version: 12
node-version: 14.x
registry-url: https://registry.npmjs.org/

- run: npx lerna bootstrap
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 14.x
- run: npx lerna bootstrap
- run: npx lerna run compile --stream
- run: npx lerna run test --stream
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ To start contributing to the project you would need to set up the project in you
- `.\scripts\check-all-the-things.ps1` on Windows

> [!Warning]
> Node v12 is the minimum version required.
> Node v14.14 is the minimum version required.

> [!Attention]
> All tests must have passed before submitting a PR.
Expand Down
8 changes: 4 additions & 4 deletions docs/chapters/02_getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ You can develop with Booster using any of the following operating systems:

#### Install Node.js

The minimal required Node.js version is `v14`. Download the installer
The minimal required Node.js version is `v14.14`. Download the installer
[from nodejs website](https://nodejs.org/en/), or install it using your system's package
manager.

Expand Down Expand Up @@ -45,13 +45,13 @@ Verify that it was installed properly by checking so from your terminal:

```shell
$ node -v
v14.2.0
v14.14.0

$ npm -v
7.0.0
```

As soon as you have a Node.js version higher than `v14`, and an `npm` version higher than
As soon as you have a Node.js version higher than `v14.14`, and an `npm` version higher than
`7`, you are good to go. Just note that `npm` comes with node, you don't have to install
it apart.

Expand Down Expand Up @@ -259,7 +259,7 @@ something like

```shell
$ boost version
@boostercloud/cli/0.12.3 darwin-x64 node-v14.0.0
@boostercloud/cli/0.16.1 darwin-x64 node-v14.14.0
```

## Your first Booster app in 10 minutes
Expand Down
Loading