Files
extremeheat 4fc73beae0 Update bedrock item and version handling (#110)
* 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
2021-09-24 17:02:44 +02:00

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