mirror of
https://github.com/barkeser2002/node-minecraft-data.git
synced 2026-09-25 19:36:21 +03:00
* add bedrock item handling * use getters in data.js, return URL for non-JSON * export protocol yaml * add version methods to docs * fix typo * Update api.md * allow version comparing majorVersions * deprecated prepublish script -> prepare which runs on git install * update submodule dir * fix ci * require non-relative path * revert * merge master * Merge branch 'master' into bedrock * add version checking alias * remove bedrock data provider * disable bedrock item tests
28 lines
460 B
YAML
28 lines
460 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [14.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- run: npm install
|
|
- run: npm test
|