Skip to content

Commit

Permalink
[ci] Change to Node 18 in github actions
Browse files Browse the repository at this point in the history
Nock + streams (got?) seems to be currently broken with Node 20
  • Loading branch information
yamalight committed Dec 4, 2023
1 parent 23f6754 commit 05471d4
Show file tree
Hide file tree
Showing 5 changed files with 81 additions and 20 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
node-version: 18
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
# get versions for currently published and local packages
Expand All @@ -38,7 +38,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
node-version: 18
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
# get versions for currently published and local packages
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
node-version: 18
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
# get versions for currently published and local packages
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
node-version: 18
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
# get versions for currently published and local packages
Expand All @@ -154,7 +154,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
node-version: 18
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
# get versions for currently published and local packages
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
node-version: 18
cache: 'npm'
- name: install
run: npm ci
Expand All @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
node-version: 18
cache: 'npm'
- name: install
run: npm ci
Expand All @@ -44,7 +44,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
node-version: 18
cache: 'npm'
- name: install
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
node-version: 18
cache: 'npm'
- name: install
run: npm ci
Expand Down
79 changes: 70 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/exoframe-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"exoframe-client": "^7.0.0-pre",
"got": "^13.0.0",
"got": "^14.0.0",
"inquirer": "^9.2.11",
"lodash": "^4.17.21",
"open": "^9.1.0",
Expand All @@ -37,7 +37,7 @@
"eslint-config-standard": "^17.1.0",
"eslint-plugin-prettier": "^5.0.1",
"mock-stdin": "^1.0.0",
"nock": "^13.3.4",
"nock": "^13.4.0",
"prettier": "^3.0.3",
"tar-fs": "^3.0.4",
"vitest": "^0.34.6"
Expand Down

0 comments on commit 05471d4

Please sign in to comment.