geojs 1.10.13 → 1.10.15
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 +7 -7
- package/geo.js +148 -65
- package/geo.lean.js +147 -64
- package/geo.lean.min.js +3 -3
- package/geo.min.js +6 -6
- package/package.json +3 -3
- package/src/event.js +57 -0
- package/src/feature.js +49 -3
- package/src/mapInteractor.js +14 -0
|
@@ -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: |
|
|
@@ -109,13 +107,15 @@ jobs:
|
|
|
109
107
|
- uses: actions/checkout@v3
|
|
110
108
|
- uses: actions/setup-node@v3
|
|
111
109
|
with:
|
|
112
|
-
node-version: '
|
|
110
|
+
node-version: 'lts/*'
|
|
113
111
|
- run: npm ci
|
|
114
112
|
- name: Import artifacts
|
|
115
113
|
uses: actions/download-artifact@v3
|
|
116
114
|
with:
|
|
117
115
|
name: dist
|
|
118
116
|
path: dist
|
|
117
|
+
- name: Install semantic-release
|
|
118
|
+
run: npm install semantic-release --no-save
|
|
119
119
|
- name: Release
|
|
120
120
|
env:
|
|
121
121
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|