Skip to content

Commit

Permalink
node 18 (#709)
Browse files Browse the repository at this point in the history
* node 18

* Update bedrock-ci.yml

* Update update-helper.yml

* Update ci.yml

* Update bedrock-ci.yml

* Update bedrock-ci.yml

* Update bedrock-ci.yml

* Update bedrock-ci.yml

* Update bedrock-ci.yml order

* Update bedrock-ci.yml

---------

Co-authored-by: extremeheat <[email protected]>
  • Loading branch information
rom1504 and extremeheat committed Dec 31, 2023
1 parent 5fc5906 commit 4360b84
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 14 deletions.
34 changes: 23 additions & 11 deletions .github/workflows/bedrock-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,30 +12,42 @@ jobs:
timeout-minutes: 14

steps:
- name: Use Node.js 14.x
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- uses: actions/checkout@v2
node-version: 18.x
- name: Checkout node-minecraft-data
uses: actions/checkout@v2
with:
repository: PrismarineJS/node-minecraft-data
submodules: recursive
path: node-mcdata
- run: rm -rf minecraft-data
- uses: actions/checkout@v2
# Erase the submodule for minecraft-data with a checkout of the current minecraft-data repo
- run: rm -rf node-mcdata/minecraft-data
- name: Checkout minecraft-data
uses: actions/checkout@v2
with:
path: node-mcdata/minecraft-data
- uses: actions/checkout@v2
# Now install local node-minecraft-data. Running "prepare" should gen data and types
- name: Install minecraft-data
run: |
cd node-mcdata
npm install
npm run prepare
npm link
- name: Checkout bedrock-protocol
uses: actions/checkout@v2
with:
repository: PrismarineJS/bedrock-protocol
path: bedrock-protocol
- run: ls -R .
- run: |
# I forget the correct install order, do both
- name: Install bedrock-protocol
run: |
cd bedrock-protocol
npm uninstall minecraft-data
npm install ../node-mcdata
npm i
cd ../node-mcdata
npm run generate:data
- run: npm test
npm install ../node-mcdata
- name: Running bedrock-protocol tests
run: npm test
working-directory: bedrock-protocol
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [18.x]

steps:
- uses: actions/checkout@v2
Expand All @@ -23,7 +23,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: npm install
working-directory: tools/js
- run: npm build
- run: npm run build
working-directory: tools/js
- run: npm test
working-directory: tools/js
2 changes: 1 addition & 1 deletion .github/workflows/update-helper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ jobs:
- name: Runs helper
run: cd .github/helper-bot && node index.js
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 4360b84

Please sign in to comment.