Skip to content

Commit

Permalink
chore: use sepolia-web for e2e webwallet
Browse files Browse the repository at this point in the history
  • Loading branch information
bluecco committed Dec 18, 2024
1 parent e8330fc commit d96b7b5
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,24 +80,38 @@ jobs:
EMAIL_PASSWORD: ${{ secrets.EMAIL_PASSWORD }}

steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Install dependencies
run: pnpm install
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
version: ${{ env.PNPM_VERSION }}

- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: "pnpm"

- name: Restore pnpm cache
uses: actions/cache/restore@v4
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ~/.pnpm-store
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install

- name: Build demo-dapp-starknet
run: NEXT_PUBLIC_ARGENT_WEBWALLET_URL=https://sepolia-web.argent.xyz && pnpm run build

Expand Down

0 comments on commit d96b7b5

Please sign in to comment.