Skip to content

Commit fefb3e7

Browse files
authored
dep!: April 2024 update (#270)
* chore: correct package-lock.json node engine * dep(dev): bump @cordova/eslint-config@^5.1.0 * dep(dev): bump puppeteer@^22.6.3 * dep(dev): bump karma related packages - karma@^6.4.3 - karma-chrome-launcher@^3.2.0 - karma-coverage@^2.2.1 * dep!(dev): bump jasmine-core@^5.1.2 * dep(dev): bump gulp related packages - grunt@^1.6.1 - grunt-contrib-clean@^2.0.1 * dep(dev): bump globby@^11.1.0 * chore: rebuilt package-lock.json * ci(dev): bump gh-action dependencies & node version test range * ci: update codecov@v4 w/ token
1 parent d97d8f9 commit fefb3e7

File tree

5 files changed

+2327
-5998
lines changed

5 files changed

+2327
-5998
lines changed

.eslintrc.yml

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ overrides:
2323
extends: '@cordova/eslint-config/browser-tests'
2424
rules:
2525
no-var: 0
26+
object-shorthand: 0
2627

2728
- files: [test/test-platform-modules/**/*.js]
2829
extends: '@cordova/eslint-config/browser'
@@ -37,3 +38,4 @@ overrides:
3738
PLATFORM_VERSION_BUILD_LABEL: false
3839
rules:
3940
no-var: 0
41+
object-shorthand: 0

.github/workflows/ci.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ jobs:
2525
runs-on: ${{ matrix.os }}
2626
strategy:
2727
matrix:
28-
node-version: [14.x, 16.x, 18.x]
28+
node-version: [16.x, 18.x, 20.x]
2929
os: [ubuntu-latest, windows-latest, macos-latest]
3030

3131
steps:
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v4
3333

3434
- name: Use Node.js ${{ matrix.node-version }}
35-
uses: actions/setup-node@v3
35+
uses: actions/setup-node@v4
3636
with:
3737
node-version: ${{ matrix.node-version }}
3838

@@ -46,6 +46,7 @@ jobs:
4646
env:
4747
CI: true
4848

49-
- uses: codecov/codecov-action@v3
49+
- uses: codecov/codecov-action@v4
5050
with:
51+
token: ${{ secrets.CODECOV_TOKEN }}
5152
fail_ci_if_error: true

0 commit comments

Comments
 (0)