mirror of
https://github.com/PrismarineJS/node-minecraft-protocol.git
synced 2024-12-23 22:12:23 -05:00
75e5316e8b
* make port discovery automatic * try to use promise instead of promisify * update java version * add faster timeout * increase timeout duration for server startup * Update ci.yml * update ram * update java again * Update clientTest.js * actually skip online * Update clientTest.js * comment out * fix comment * properly await server data deletion * fix serverTest for 1.17 with backwards compat * add back dimension to login packet * remove comment * remove duplicated dimension in server test Co-authored-by: Romain Beaumont <romain.rom1@gmail.com>
47 lines
1 KiB
YAML
47 lines
1 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
mcVersion: ['1.7', '1.8', '1.9', '1.10', '1.11.2', '1.12.2', '1.13.2', '1.14.4', '1.15.2', '1.16.5', '1.17']
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js 14.x
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 14.x
|
|
- name: Setup Java JDK
|
|
uses: actions/setup-java@v1.4.3
|
|
with:
|
|
java-version: '16'
|
|
distribution: 'adopt'
|
|
- name: Install dependencies
|
|
run: npm install
|
|
- name: Run tests
|
|
run: npm test -- -g ${{ matrix.mcVersion }}
|
|
packet-cycle-test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js 14.x
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 14.x
|
|
- name: Setup Java JDK
|
|
uses: actions/setup-java@v1.4.3
|
|
with:
|
|
java-version: '16'
|
|
distribution: 'adopt'
|
|
- run: npm install && npm run test-non-par
|