Skip to content

Commit

Permalink
chore(dev-deps): cypress-multi-reporters downgrade rimraf to support …
Browse files Browse the repository at this point in the history
…node18
  • Loading branch information
YOU54F committed Oct 24, 2024
1 parent 4f9e8de commit 0a0dcdd
Show file tree
Hide file tree
Showing 9 changed files with 297 additions and 11,644 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-cypress-multi-reporters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [18.x, 20.x, 22.x]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-cypress-slack-reporter-old.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [18.x, 20.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-cypress-multi-reporters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16
registry-url: 'https://registry.npmjs.org'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-cypress-slack-reporter-old.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16
registry-url: 'https://registry.npmjs.org'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'use strict';
"use strict";
import js from "@eslint/js";
import globals from "globals";

Expand All @@ -12,8 +12,7 @@ export default [
...globals.node,
...globals.mocha,
...globals.mocha,
expect: true

expect: true,
},
},
ignores: [
Expand All @@ -23,15 +22,13 @@ export default [
"node_modules/",
"lcov-*",
"xunit*",
"eslint.config.js",
"eslint.config.mjs",
],

rules: {
"brace-style": [2, "stroustrup", { allowSingleLine: true }],
"no-console": 0,
strict: [2],
indent: [2, 4],

semi: ["error"],
"prefer-const": ["error"],
"no-var": ["error"],
Expand All @@ -41,12 +38,5 @@ export default [
"quote-props": ["error", "as-needed"],
"prefer-template": ["error"],
},
// files: 'tests/**',
// env: {
// mocha: true
// // },
// globals: {
// expect: true
// }
},
];
];
Loading

0 comments on commit 0a0dcdd

Please sign in to comment.