This repository was archived by the owner on Aug 26, 2025. It is now read-only.
wallets: add [rainbowWallet] (#210) #67
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: PR Check | |
| on: | |
| push: | |
| branches: [main, dev] | |
| pull_request: | |
| branches: [main, dev] | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| install: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: yarn-cache | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| **/node_modules | |
| .yarn/cache | |
| key: ${{ runner.os }}-yarn-cache-${{ hashFiles('./yarn.lock') }} | |
| - name: yarn-install | |
| # Check out the lockfile from main, reinstall, and then | |
| # verify the lockfile matches what was committed. | |
| run: | | |
| yarn install | |
| CHANGES=$(git status -s) | |
| if [[ ! -z $CHANGES ]]; then | |
| echo "Changes found: $CHANGES" | |
| git diff | |
| exit 1 | |
| fi | |
| build: | |
| runs-on: ubuntu-latest | |
| needs: [install] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: yarn-cache | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| **/node_modules | |
| .yarn/cache | |
| key: ${{ runner.os }}-yarn-cache-${{ hashFiles('./yarn.lock') }} | |
| - name: build | |
| run: yarn run build | |
| env: | |
| NEXT_PUBLIC_WALLET_CONNECT_ID: ${{ secrets.NEXT_PUBLIC_WALLET_CONNECT_ID }} | |
| prettier: | |
| runs-on: ubuntu-latest | |
| needs: [install] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: yarn-cache | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| **/node_modules | |
| .yarn/cache | |
| key: ${{ runner.os }}-yarn-cache-${{ hashFiles('./yarn.lock') }} | |
| - name: prettier | |
| run: | | |
| yarn run prettier | |
| CHANGES=$(git status -s) | |
| if [[ ! -z $CHANGES ]]; then | |
| echo "Changes found: $CHANGES" | |
| exit 1 | |
| fi | |
| lint: | |
| runs-on: ubuntu-latest | |
| needs: [install] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: yarn-cache | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| **/node_modules | |
| .yarn/cache | |
| key: ${{ runner.os }}-yarn-cache-${{ hashFiles('./yarn.lock') }} | |
| - name: lint | |
| run: yarn run lint | |
| test: | |
| runs-on: ubuntu-latest | |
| needs: [build] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: yarn-cache | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| **/node_modules | |
| .yarn/cache | |
| key: ${{ runner.os }}-yarn-cache-${{ hashFiles('./yarn.lock') }} | |
| - name: test | |
| run: yarn run test |