Skip to content

Commit

Permalink
fix: dependabot flow
Browse files Browse the repository at this point in the history
  • Loading branch information
canlopes committed Mar 23, 2023
1 parent 76f5f23 commit a205c58
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ on: pull_request_target
jobs:
worker:
runs-on: ubuntu-latest
services:
devnet:
image: shardlabs/starknet-devnet:latest-seed0
ports:
- 5050:5050
if: github.actor == 'dependabot[bot]'
steps:
- uses: actions/checkout@v3
Expand All @@ -16,6 +11,10 @@ jobs:
with:
node-version: "16"
cache: "yarn"
- name: Build starknet-devnet
run: docker build -f ./packages/extension/e2e/Dockerfile . --tag e2e-starknet-devnet:latest
- name: Run starknet-devnet
run: docker run -d -it --name devnet -p 5050:5050 e2e-starknet-devnet:latest
- run: yarn setup
- name: Install Playwright Browsers
run: npx playwright install chromium
Expand Down

0 comments on commit a205c58

Please sign in to comment.