fix(register): return data in register notice #16
This file contains 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: Build and Test | |
on: [push, workflow_dispatch] | |
jobs: | |
# TODO: add unit tests using bused | |
integration: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4.0.2 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'yarn' | |
- run: yarn --frozen-lockfile | |
- run: yarn aos:build | |
- run: yarn test | |
evolve: | |
# Run on main branch only | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' | |
needs: integration | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4.0.2 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'yarn' | |
- run: yarn --frozen-lockfile | |
- run: yarn evolve | |
env: | |
WALLET: ${{ secrets.WALLET }} | |
REGISTRY_ID: ${{ vars.REGISTRY_ID }} |