Skip to content

Commit d3df34d

Browse files
extremeheatrom1504
andauthored
Use node 18 on CI (#3157)
* Delete .gitpod.DockerFile * use node 16 on CI * replace localhost with 127.0.0.1 * Update index.js 16 to 18 --------- Co-authored-by: Romain Beaumont <[email protected]>
1 parent 9ecdf20 commit d3df34d

File tree

8 files changed

+10
-22
lines changed

8 files changed

+10
-22
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v2
15-
- name: Use Node.js 14.x
15+
- name: Use Node.js 18.x
1616
uses: actions/[email protected]
1717
with:
18-
node-version: 14.x
18+
node-version: 18.x
1919
- run: npm i && npm run lint
2020

2121
MinecraftServer:
@@ -46,7 +46,7 @@ jobs:
4646
- name: Use Node.js ${{ matrix.node-version }}
4747
uses: actions/[email protected]
4848
with:
49-
node-version: 14.x
49+
node-version: 18.x
5050
- name: Setup Java JDK
5151
uses: actions/[email protected]
5252
with:

.github/workflows/npm-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Node.js
1414
uses: actions/setup-node@master
1515
with:
16-
node-version: 14.0.0
16+
node-version: 18.0.0
1717
- id: publish
1818
uses: JS-DevTools/npm-publish@v1
1919
with:

.gitpod.DockerFile

-11
This file was deleted.

.gitpod.yml

-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
image:
2-
file: .gitpod.DockerFile
31
tasks:
42
- command: npm install

index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
if (typeof process !== 'undefined' && parseInt(process.versions.node.split('.')[0]) < 14) {
1+
if (typeof process !== 'undefined' && parseInt(process.versions.node.split('.')[0]) < 18) {
22
console.error('Your node version is currently', process.versions.node)
3-
console.error('Please update it to a version >= 14.x.x from https://nodejs.org/')
3+
console.error('Please update it to a version >= 18.x.x from https://nodejs.org/')
44
process.exit(1)
55
}
66

test/externalTest.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ for (const supportedVersion of mineflayer.testedVersions) {
5858
username: 'flatbot',
5959
viewDistance: 'tiny',
6060
port: PORT,
61-
host: 'localhost',
61+
host: '127.0.0.1',
6262
version: supportedVersion
6363
})
6464
commonTest(bot)
@@ -89,6 +89,7 @@ for (const supportedVersion of mineflayer.testedVersions) {
8989
console.log(`pinging ${version.minecraftVersion} port : ${PORT}`)
9090
mc.ping({
9191
port: PORT,
92+
host: '127.0.0.1',
9293
version: supportedVersion
9394
}, (err, results) => {
9495
if (err) return done(err)

test/externalTests/plugins/testCommon.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ function inject (bot) {
183183
return run(childBotName)
184184
}
185185

186-
const child = spawn('node', [file, 'localhost', `${bot.test.port}`])
186+
const child = spawn('node', [file, '127.0.0.1', `${bot.test.port}`])
187187

188188
// Useful to debug child processes:
189189
child.stdout.on('data', (data) => { console.log(`${data}`) })

test/externalTests/spawnEvent.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = () => async (bot) => {
77
username: 'spawnbot',
88
viewDistance: 'tiny',
99
port: bot.test.port,
10-
host: 'localhost',
10+
host: '127.0.0.1',
1111
version: bot.version
1212
})
1313
await once(spawnBot, 'spawn')

0 commit comments

Comments
 (0)