Skip to content

Commit 0668556

Browse files
critesjoshclaude
andcommitted
Add CI workflow for devnet account deployment
Runs deploy-account::devnet on pushes and PRs to next/dev branches. No local network or Aztec CLI needed since it targets the remote devnet. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 120d45c commit 0668556

1 file changed

Lines changed: 36 additions & 0 deletions

File tree

.github/workflows/devnet.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Devnet Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- next
7+
- dev
8+
pull_request:
9+
branches:
10+
- next
11+
- dev
12+
workflow_dispatch:
13+
14+
jobs:
15+
devnet-deploy-account:
16+
name: Deploy Account to Devnet
17+
runs-on: ubuntu-latest
18+
env:
19+
AZTEC_ENV: devnet
20+
AZTEC_VERSION: 4.0.0-devnet.2-patch.1
21+
22+
steps:
23+
- name: Checkout repository
24+
uses: actions/checkout@v5
25+
26+
- name: Set up Node.js
27+
uses: actions/setup-node@v4
28+
with:
29+
node-version: "22"
30+
cache: "yarn"
31+
32+
- name: Install project dependencies
33+
run: yarn
34+
35+
- name: Deploy account to devnet
36+
run: yarn deploy-account::devnet

0 commit comments

Comments
 (0)