apply patch for Raster tiles are much lower detail when terrain is en… #1
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: Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
checks: write | |
pull-requests: write | |
contents: write | |
jobs: | |
code-hygiene: | |
name: Code Hygiene | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- run: npm ci | |
- run: npm run lint | |
if: '!cancelled()' | |
- run: npm run lint-css | |
if: '!cancelled()' | |
- run: npm run generate-typings | |
if: '!cancelled()' | |
- run: npm run typecheck | |
if: '!cancelled()' | |
- run: npm run generate-docs | |
- run: docker run --rm -v ${PWD}:/docs squidfunk/mkdocs-material build | |
unit-tests: | |
name: Unit tests and Coverage | |
runs-on: ubuntu-latest | |
timeout-minutes: 40 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Start display server | |
run: nohup Xvfb & | |
echo "DISPLAY=:0" >> $GITHUB_ENV | |
- run: npm ci | |
- run: npm run test-unit-ci | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
files: ${{ github.workspace }}/coverage/unit/codecov.json | |
verbose: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
disable_search: true | |
- name: Upload test results to Codecov | |
uses: codecov/test-results-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
integration-tests: | |
name: Integration tests | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 40 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- run: npm ci | |
- run: npm run build-dist | |
- uses: actions/upload-artifact@v4 | |
if: '!cancelled()' | |
with: | |
name: build-dist-${{ matrix.os }} | |
path: dist/maplibre-gl.js | |
- run: npm run test-integration-ci | |
render-tests: | |
name: Render tests | |
env: | |
SPLIT_COUNT: 3 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
split: [0, 1, 2] | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 120 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- name: install CJK fonts for local ideographs render tests | |
if: runner.os == 'Linux' | |
run: sudo apt install fonts-noto-cjk | |
- run: npm ci | |
- name: Start display server | |
if: runner.os == 'Linux' | |
run: nohup Xvfb & | |
echo "DISPLAY=:0" >> $GITHUB_ENV | |
- run: npm run build-dist | |
- name: Run Render tests | |
run: npm run test-render | |
env: | |
CURRENT_SPLIT_INDEX: ${{ matrix.split }} | |
- name: Upload coverage reports to Codecov | |
if: '!cancelled()' | |
uses: codecov/codecov-action@v4 | |
with: | |
files: ${{ github.workspace }}/coverage/render/codecov.json | |
verbose: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
disable_search: true | |
- name: Upload test results to Codecov | |
if: '!cancelled()' | |
uses: codecov/test-results-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Upload render test failure | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: render-test-report-${{ matrix.os }}-${{ matrix.split }} | |
path: ${{ github.workspace }}/test/integration/render/results.html | |
build-tests: | |
name: Build tests | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- run: npm ci | |
- run: npm run build-dist | |
- run: npm run test-build-ci |