Skip to content

Commit

Permalink
Merge pull request #81 from marmelab/fix/bump-to-node-18-to-fix-oclif…
Browse files Browse the repository at this point in the history
…-build-issue

fix: fix build problem on oclif dependency in node 14 environment
  • Loading branch information
benoitchazoule authored Mar 15, 2024
2 parents 39436bc + 020f1cc commit f199983
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: 📥 Download deps
uses: bahmutov/npm-install@v1
Expand All @@ -49,7 +49,7 @@ jobs:
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: 📥 Download deps
uses: bahmutov/npm-install@v1
Expand All @@ -70,7 +70,7 @@ jobs:
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: 📥 Download deps
uses: bahmutov/npm-install@v1
Expand All @@ -91,7 +91,7 @@ jobs:
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: 📥 Download deps
uses: bahmutov/npm-install@v1
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: 📥 Download deps
uses: bahmutov/npm-install@v1
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ DESCRIPTION
Create an analysis on GreenFrame server.
```
_See code: [dist/commands/analyze.ts](https://github.com/marmelab/greenframe-cli/blob/v1.7.0/dist/commands/analyze.ts)_
_See code: [dist/commands/analyze.ts](https://github.com/marmelab/greenframe-cli/blob/v2.0.0/dist/commands/analyze.ts)_
## `greenframe kube-config`
Expand All @@ -292,7 +292,7 @@ DESCRIPTION
greenframe kube-config
```
_See code: [dist/commands/kube-config.ts](https://github.com/marmelab/greenframe-cli/blob/v1.7.0/dist/commands/kube-config.ts)_
_See code: [dist/commands/kube-config.ts](https://github.com/marmelab/greenframe-cli/blob/v2.0.0/dist/commands/kube-config.ts)_
## `greenframe open [BASEURL] [SCENARIO]`
Expand All @@ -319,7 +319,7 @@ DESCRIPTION
greenframe analyze ./yourScenario.js https://greenframe.io
```
_See code: [dist/commands/open.ts](https://github.com/marmelab/greenframe-cli/blob/v1.7.0/dist/commands/open.ts)_
_See code: [dist/commands/open.ts](https://github.com/marmelab/greenframe-cli/blob/v2.0.0/dist/commands/open.ts)_
## `greenframe update [CHANNEL]`
Expand All @@ -338,7 +338,7 @@ DESCRIPTION
greenframe update
```
_See code: [dist/commands/update.ts](https://github.com/marmelab/greenframe-cli/blob/v1.7.0/dist/commands/update.ts)_
_See code: [dist/commands/update.ts](https://github.com/marmelab/greenframe-cli/blob/v2.0.0/dist/commands/update.ts)_
<!-- commandsstop -->
## Development
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"xo": "^0.52.3"
},
"engines": {
"node": ">=14.0.0"
"node": ">=18.0.0"
},
"files": [
"/bin",
Expand Down

0 comments on commit f199983

Please sign in to comment.