-
Notifications
You must be signed in to change notification settings - Fork 99
41 lines (33 loc) · 879 Bytes
/
testnet.yaml
File metadata and controls
41 lines (33 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Testnet Tests
on:
push:
branches:
- testnet
pull_request:
branches:
- testnet
workflow_dispatch:
concurrency:
group: testnet-deploy
cancel-in-progress: true
jobs:
testnet-deploy-account:
name: Deploy Account to Testnet
runs-on: ubuntu-latest
env:
AZTEC_ENV: testnet
L1_PRIVATE_KEY: ${{ secrets.L1_PRIVATE_KEY }}
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Read Aztec version from config
run: echo "AZTEC_VERSION=$(jq -r '.settings.version' config/testnet.json)" >> $GITHUB_ENV
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "24"
cache: "yarn"
- name: Install project dependencies
run: yarn
- name: Deploy account to testnet
run: yarn deploy-account::testnet