Add testnet config and upgrade Aztec to 4.1.0-rc.2 #51
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |
| AZTEC_VERSION: 4.1.0-rc.2 | |
| L1_PRIVATE_KEY: ${{ secrets.L1_PRIVATE_KEY }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| cache: "yarn" | |
| - name: Install project dependencies | |
| run: yarn | |
| - name: Deploy account to testnet | |
| run: yarn deploy-account::testnet |