Skip to content

Commit

Permalink
fix: set node version to 18
Browse files Browse the repository at this point in the history
  • Loading branch information
Roger Torres committed Sep 3, 2023
1 parent 6c6529a commit 94961b5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: install node 16
- name: install node 18
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x

- name: install and build
run: yarn install && yarn build
Expand Down Expand Up @@ -73,10 +73,10 @@ jobs:
with:
fetch-depth: 0

- name: install node 16
- name: install node 18
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x

- name: analyze ${{ matrix.lib }}
id: analyze
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
"email": "rotorsoft@outlook.com"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rotorsoft/eventually-monorepo.git"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ describe("calculator express app with proxy", () => {
await broker().drain();

const response = await proxy.load(Calculator, id);
console.log("???????????????????", response);
expect(response?.result?.state).toEqual({
left: "3.3",
result: 3.3
Expand Down

0 comments on commit 94961b5

Please sign in to comment.