Skip to content

Commit 0a0dcdd

Browse files
committed
chore(dev-deps): cypress-multi-reporters downgrade rimraf to support node18
1 parent 4f9e8de commit 0a0dcdd

9 files changed

+297
-11644
lines changed

.github/workflows/build-cypress-multi-reporters.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [14.x, 16.x, 18.x]
19+
node-version: [18.x, 20.x, 22.x]
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- name: Use Node.js ${{ matrix.node-version }}
24-
uses: actions/setup-node@v3
24+
uses: actions/setup-node@v4
2525
with:
2626
node-version: ${{ matrix.node-version }}
2727
cache: 'yarn'

.github/workflows/build-cypress-slack-reporter-old.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
node-version: [14.x, 16.x, 18.x]
24+
node-version: [18.x, 20.x, 22.x]
2525
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2626

2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929
- name: Use Node.js ${{ matrix.node-version }}
30-
uses: actions/setup-node@v3
30+
uses: actions/setup-node@v4
3131
with:
3232
node-version: ${{ matrix.node-version }}
3333
cache: 'yarn'

.github/workflows/publish-cypress-multi-reporters.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
release:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
20-
- uses: actions/setup-node@v3
20+
- uses: actions/setup-node@v4
2121
with:
2222
node-version: 16
2323
registry-url: 'https://registry.npmjs.org'

.github/workflows/publish-cypress-slack-reporter-old.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
release:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 0
25-
- uses: actions/setup-node@v3
25+
- uses: actions/setup-node@v4
2626
with:
2727
node-version: 16
2828
registry-url: 'https://registry.npmjs.org'
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
'use strict';
1+
"use strict";
22
import js from "@eslint/js";
33
import globals from "globals";
44

@@ -12,8 +12,7 @@ export default [
1212
...globals.node,
1313
...globals.mocha,
1414
...globals.mocha,
15-
expect: true
16-
15+
expect: true,
1716
},
1817
},
1918
ignores: [
@@ -23,15 +22,13 @@ export default [
2322
"node_modules/",
2423
"lcov-*",
2524
"xunit*",
26-
"eslint.config.js",
25+
"eslint.config.mjs",
2726
],
28-
2927
rules: {
3028
"brace-style": [2, "stroustrup", { allowSingleLine: true }],
3129
"no-console": 0,
3230
strict: [2],
3331
indent: [2, 4],
34-
3532
semi: ["error"],
3633
"prefer-const": ["error"],
3734
"no-var": ["error"],
@@ -41,12 +38,5 @@ export default [
4138
"quote-props": ["error", "as-needed"],
4239
"prefer-template": ["error"],
4340
},
44-
// files: 'tests/**',
45-
// env: {
46-
// mocha: true
47-
// // },
48-
// globals: {
49-
// expect: true
50-
// }
5141
},
52-
];
42+
];

0 commit comments

Comments
 (0)