geojs 1.10.12 → 1.10.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/main.yml +6 -6
- package/geo.js +162 -118
- package/geo.lean.js +161 -117
- package/geo.lean.min.js +9 -9
- package/geo.min.js +11 -11
- package/package.json +9 -7
- package/src/mapInteractor.js +6 -0
- package/src/pixelmapLayer.js +3 -1
|
@@ -31,12 +31,10 @@ jobs:
|
|
|
31
31
|
- run: npm run setup-website
|
|
32
32
|
- run: npm run ci-xvfb
|
|
33
33
|
- run: npm run ci-build-website
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
codecov
|
|
39
|
-
|
|
34
|
+
- uses: codecov/codecov-action@v3
|
|
35
|
+
with:
|
|
36
|
+
fail_ci_if_error: true
|
|
37
|
+
verbose: true
|
|
40
38
|
- name: On failure, create alternate baseline images in case the new behavior is correct
|
|
41
39
|
if: ${{ failure() }}
|
|
42
40
|
run: |
|
|
@@ -71,6 +69,8 @@ jobs:
|
|
|
71
69
|
- uses: actions/checkout@v3
|
|
72
70
|
# Don't pin version to test with the latest common version
|
|
73
71
|
- uses: actions/setup-node@v3
|
|
72
|
+
with:
|
|
73
|
+
node-version: 'lts/*'
|
|
74
74
|
- run: npm --version && node --version
|
|
75
75
|
- uses: browser-actions/setup-firefox@latest
|
|
76
76
|
- run: sudo apt-get remove --yes fonts-lato
|