Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: corepack enable pnpm

- name: Install dependencies
run: pnpm install
run: pnpm install --frozen-lockfile

- name: Check
run: pnpm run check
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
restore-keys: pnpm-${{ runner.os }}-

- name: Install dependencies
run: pnpm install
run: pnpm install --frozen-lockfile

- name: Get Playwright version
id: playwright-version
Expand Down Expand Up @@ -101,3 +101,12 @@ jobs:
name: playwright-report-${{ matrix.shard }}
path: playwright-report/
retention-days: 15

e2e-result:
name: E2E Tests
runs-on: ubuntu-latest
if: ${{ always() }}
needs: [e2e]
steps:
- run: exit 1
if: ${{ needs.e2e.result == 'failure' || needs.e2e.result == 'cancelled' }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"tempo.ts": "^0.14.0",
"unplugin-auto-import": "^21.0.0",
"unplugin-icons": "^23.0.1",
"viem": "^2.44.4",
"viem": ">=2.44.4 <2.47.0",
"vocs": "https://pkg.pr.new/wevm/vocs@e5ad67e",
"wagmi": "3.4.1",
"waku": "1.0.0-alpha.2",
Expand Down
119 changes: 76 additions & 43 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading