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.
@@ -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
- - name: Report coverage
36
- run: |
37
- pip3 install codecov
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: '16'
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 }}