Skip to content

Commit

Permalink
Fix CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
edoardocavazza committed Jul 9, 2024
1 parent 0dd9abf commit 8ce1039
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/lint_build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
run: yarn build

- name: Upload build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: DNA
path: |
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
run: yarn test:browser --coverage --coverage.provider istanbul

- name: Upload coverage to codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
if: always()
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
run: yarn test:node --coverage

- name: Upload coverage to codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
if: always()
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}

- name: Upload coverage to codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
if: always()
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion src/CustomElement.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export interface CustomElementMixin {
/**
* Invoked each time one of the elements's attributes is added, removed, or changed.
*
* @param attributeName The name of the updated attribute.
* @param attrName The name of the updated attribute.
* @param oldValue The previous value of the attribute.
* @param newValue The new value for the attribute (null if removed).
* @param namespace Attribute namespace.
Expand Down
16 changes: 8 additions & 8 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1381,12 +1381,12 @@
integrity sha512-PfjmrqBjApZdgs1filwhN6nr9rwMtkLyKg1hI8khf3276/jrnEHypV5CU/C9Xx8zZysb4DIC60xYDsGdx5XAFw==

"@chialab/vitest-provider-browserstack@beta":
version "0.19.0-beta.0"
resolved "https://registry.npmjs.org/@chialab/vitest-provider-browserstack/-/vitest-provider-browserstack-0.19.0-beta.0.tgz#b35ffca69db352c222e205daabd7a6dea2061f36"
integrity sha512-2NJn0MBwkylRZhg9Q082mHAgoeQhbp5z6YaaFMtK5WaREXs7Y+UU3Jo1nvKMLnSpEoZEEL5UzawgxEAjf/PBMg==
version "0.19.0-beta.1"
resolved "https://registry.npmjs.org/@chialab/vitest-provider-browserstack/-/vitest-provider-browserstack-0.19.0-beta.1.tgz#58f0f116a50b7ab2643b220b32c12f3058efd094"
integrity sha512-CLYubuH6OwWbqfMgdh5PP94TTxvCbsN9d+ir0QHSR0N2CxYT8koz/wMuWzlI+4bYDetsbAbiNqNPjmLrGWBUjQ==
dependencies:
browserstack-local "^1.5.5"
ip "^1.1.8"
ip "^2.0.0"
webdriverio "^8.17.0"

"@docsearch/css@3.6.0", "@docsearch/css@^3.6.0":
Expand Down Expand Up @@ -4781,10 +4781,10 @@ ip-address@^9.0.5:
jsbn "1.1.0"
sprintf-js "^1.1.3"

ip@^1.1.8:
version "1.1.9"
resolved "https://registry.npmjs.org/ip/-/ip-1.1.9.tgz#8dfbcc99a754d07f425310b86a99546b1151e396"
integrity sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==
ip@^2.0.0:
version "2.0.1"
resolved "https://registry.npmjs.org/ip/-/ip-2.0.1.tgz#e8f3595d33a3ea66490204234b77636965307105"
integrity sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==

is-arguments@^1.1.1:
version "1.1.1"
Expand Down

0 comments on commit 8ce1039

Please sign in to comment.