mergeJson: Set merged tileset children uri to relative path to output directory #436
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
env: | |
CI: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Run npm install | |
run: | | |
npm install | |
- name: Run linting | |
run: | | |
npm run eslint | |
- name: Run formatting checks | |
run: | | |
npm run prettier-check | |
- name: Run build | |
run: | | |
npm run build | |
- name: Run tests | |
run: | | |
npm run test | |
- name: Run coverage | |
run: | | |
npm run coverage | |