Skip to content

Commit

Permalink
remove dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
canlopes committed Mar 31, 2023
1 parent 6eb06eb commit b16b3b3
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 46 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/dependabot.yml

This file was deleted.

23 changes: 11 additions & 12 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
ARGENT_X_STATUS_URL: ${{ secrets.ARGENT_X_STATUS_URL }}
ARGENT_EXPLORER_BASE_URL: ${{ secrets.ARGENT_EXPLORER_BASE_URL }}

if: github.actor != 'dependabot[bot]'
steps:
- name: Check out repository code
uses: actions/checkout@v3
Expand All @@ -39,6 +38,17 @@ jobs:
node-version: "16"
cache: "yarn"

- name: Install dependencies
run: yarn setup

- name: Install Playwright Browsers
run: npx playwright install chromium

- name: Build
run: yarn lerna run --scope @argent-x/extension build
env:
UPLOAD_SENTRY_SOURCEMAPS: false

- name: Check docker local network
run: |
CODE=`curl --write-out '%{http_code}' \
Expand All @@ -55,17 +65,6 @@ jobs:
echo "Local network is online."
fi
- name: Install dependencies
run: yarn setup

- name: Install Playwright Browsers
run: npx playwright install chromium

- name: Build
run: yarn lerna run --scope @argent-x/extension build
env:
UPLOAD_SENTRY_SOURCEMAPS: false

- name: Run e2e tests
run: xvfb-run --auto-servernum yarn test:e2e

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ jobs:
ARGENT_X_STATUS_URL: ${{ secrets.ARGENT_X_STATUS_URL }}
ARGENT_EXPLORER_BASE_URL: ${{ secrets.ARGENT_EXPLORER_BASE_URL }}

if: github.actor != 'dependabot[bot]'
steps:
- name: If github.head_ref not filled, we are merging
run: |
Expand Down Expand Up @@ -133,6 +132,7 @@ jobs:
run: |
gh pr comment ${{ env.GHA_BRANCH }} --body "[Builds for local testing](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})"
- name: SonarCloud Scan
if: github.actor != 'dependabot[bot]'
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion packages/extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
"starknet5": "npm:starknet@5.0.0-beta.3",
"styled-components": "^5.3.5",
"styled-normalize": "^8.0.7",
"swr": "^2.1.1",
"swr": "^1.3.0",
"url-join": "^5.0.0",
"webextension-polyfill": "^0.10.0",
"yup": "^1.0.0-beta.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/swap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"jsbi": "^4.3.0",
"micro-starknet": "^0.1.2",
"starknet": "^4.21.0",
"swr": "^2.1.1",
"swr": "^1.3.0",
"tiny-invariant": "^1.2.0",
"tiny-warning": "^1.0.3",
"toformat": "^2.0.0",
Expand Down
12 changes: 5 additions & 7 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -21183,12 +21183,10 @@ swc-loader@^0.1.15:
resolved "https://registry.yarnpkg.com/swc-loader/-/swc-loader-0.1.16.tgz#4c718d698e518f3e6ceb9f7872c1855cdb187066"
integrity sha512-NKIm8aJjK/z/yfzk+v7YGwJMjBKaLaUs9ZKI2zoaIGKAjtkwjO92ZLI0fiTZuwzRqVLQl/29fBdSgFCBzquR0w==

swr@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/swr/-/swr-2.1.1.tgz#9b9fd7f96236c9c0db8c96183b26661f857a64b8"
integrity sha512-OgwqZmpjOgxNbaez6qzTVqiRWn+Ti5Uzmktk2c01Afqwc50q6z15DeNC8m9G1aY+w2BwEAsKvk59iq6aHlhgyw==
dependencies:
use-sync-external-store "^1.2.0"
swr@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/swr/-/swr-1.3.0.tgz#c6531866a35b4db37b38b72c45a63171faf9f4e8"
integrity sha512-dkghQrOl2ORX9HYrMDtPa7LTVHJjCTeZoB1dqTbnnEDlSvN8JEKpYIYurDfvbQFUUS8Cg8PceFVZNkW0KNNYPw==

symbol-tree@^3.2.4:
version "3.2.4"
Expand Down Expand Up @@ -22244,7 +22242,7 @@ use-sidecar@^1.1.2:
detect-node-es "^1.1.0"
tslib "^2.0.0"

use-sync-external-store@1.2.0, use-sync-external-store@^1.2.0:
use-sync-external-store@1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz#7dbefd6ef3fe4e767a0cf5d7287aacfb5846928a"
integrity sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==
Expand Down

0 comments on commit b16b3b3

Please sign in to comment.