Skip to content

Commit 6827822

Browse files
chore(deps): bump chai from 4.3.8 to 5.0.3 (#4174)
* chore(deps): bump chai from 4.3.8 to 5.0.3 Bumps [chai](https://github.com/chaijs/chai) from 4.3.8 to 5.0.3. - [Release notes](https://github.com/chaijs/chai/releases) - [Changelog](https://github.com/chaijs/chai/blob/main/History.md) - [Commits](chaijs/chai@v4.3.8...v5.0.3) --- updated-dependencies: - dependency-name: chai dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * fix: load esm lib * fix: load esm lib * fix: docs * fix: install packages * fix: install packages * fix: cannot start UTs * fix: cannot start UTs * fix: UTs * fix: UTs * fix: UTs --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: kobenguyent <[email protected]>
1 parent 25806cb commit 6827822

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+276
-125
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Go over the steps in [this](https://github.com/firstcontributions/first-contribu
77
To start you need:
88

99
1. Fork and clone the repo.
10-
2. Run `npm install --legacy-peer-deps --omit=optional` to install all required libraries
10+
2. Run `npm i --force --omit=optional` to install all required libraries
1111
3. Do the changes.
1212
4. Add/Update Test (if possible)
1313
5. Update documentation

.github/workflows/appiumV2_Android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/setup-node@v4
2626
with:
2727
node-version: ${{ matrix.node-version }}
28-
- run: npm install --legacy-peer-deps
28+
- run: npm i --force
2929
env:
3030
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: true
3131
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: true

.github/workflows/appiumV2_iOS.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/setup-node@v4
2626
with:
2727
node-version: ${{ matrix.node-version }}
28-
- run: npm install --legacy-peer-deps
28+
- run: npm i --force
2929
env:
3030
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: true
3131
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: true

.github/workflows/doc-generation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
node-version: ${{ matrix.node-version }}
2424

2525
- name: Install Dependencies
26-
run: npm install --legacy-peer-deps
26+
run: npm i --force
2727

2828
- name: Configure git user
2929
run: |

.github/workflows/dtslint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/setup-node@v4
2121
with:
2222
node-version: ${{ matrix.node-version }}
23-
- run: npm install --legacy-peer-deps
23+
- run: npm i --force
2424
env:
2525
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: true
2626
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: true

.github/workflows/expectHelper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
with:
3030
node-version: ${{ matrix.node-version }}
3131
- name: npm install
32-
run: npm i --legacy-peer-deps
32+
run: npm i --force
3333
- name: run unit tests
3434
run: ./node_modules/.bin/mocha test/helper/Expect_test.js --timeout 5000

.github/workflows/mockServerHelper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
with:
3030
node-version: ${{ matrix.node-version }}
3131
- name: npm install
32-
run: npm i --legacy-peer-deps
32+
run: npm i --force
3333
- name: run unit tests
3434
run: npm run test:unit:mockServer

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
php-version: 7.4
3434
- name: npm install
3535
run: |
36-
npm install --legacy-peer-deps
36+
npm i --force
3737
env:
3838
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: true
3939
- name: Install browsers and deps

.github/workflows/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
php-version: 7.4
3434
- name: npm install
3535
run: |
36-
npm install --legacy-peer-deps
36+
npm i --force
3737
env:
3838
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: true
3939
- name: Install browsers and deps

.github/workflows/puppeteer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
php-version: 7.4
3434
- name: npm install
3535
run: |
36-
npm install --legacy-peer-deps && npm i puppeteer --legacy-peer-deps
36+
npm i --force && npm i puppeteer --force
3737
env:
3838
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: true
3939
- name: start a server

0 commit comments

Comments
 (0)