Refactor the account info output type to be compatible with AIP-62
standard
#640
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 | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: .node-version | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 8.8.0 | |
- name: Install global dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build global project | |
env: | |
GAID: ${{ vars.APTOS_WALLET_ADAPTER_GAID }} | |
run: pnpm run build |