Skip to content

Commit 4d0a703

Browse files
committed
chore: fix CI flow
1 parent 1711ffe commit 4d0a703

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/e2e.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ jobs:
4343
working-directory: ./app
4444
run: yarn playwright install --with-deps
4545

46+
- name: Deploy contracts
47+
working-directory: ./app
48+
run: yarn deploy-contracts
49+
4650
- name: Build app
4751
working-directory: ./app
4852
run: yarn build

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"dev": "vite",
1212
"build": "tsc && vite build",
1313
"serve": "vite preview --port ${PORT:-3000} --host 0.0.0.0",
14-
"test": "PROVER_ENABLED=false yarn deploy-contracts && playwright test",
14+
"test": "playwright test",
1515
"lint": "prettier --check ./src"
1616
},
1717
"dependencies": {

app/src/embedded-wallet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class EmbeddedWallet {
3434
// Create PXE Service
3535
const config = getPXEServiceConfig();
3636
config.l1Contracts = await aztecNode.getL1ContractAddresses();
37-
config.proverEnabled = false;
37+
// config.proverEnabled = false;
3838
this.pxe = await createPXEService(aztecNode, config);
3939

4040
// Register Sponsored FPC Contract with PXE

0 commit comments

Comments
 (0)