added the add mainnet button and changed copy in the wallet support #116
Workflow file for this run
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: ci | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛎️ Checkout 🛎️ | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.18.1' | |
cache: 'yarn' | |
- name: ⚙️ Install | |
run: yarn install --frozen-lockfile | |
- name: 🎨 Prettier | |
run: yarn run prettier | |
- name: 🏗️ Build | |
run: yarn run build |