Fix: Prevent Family Wallet Connection Pop-up from Being Blocked #637
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: Quality Check | |
| on: [pull_request] | |
| env: | |
| YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
| jobs: | |
| lint: | |
| name: Quality Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Install Node v16 | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: 16 | |
| - name: Use node_modules cache | |
| uses: actions/cache@v3 | |
| with: | |
| path: '**/node_modules' | |
| key: ${{ runner.os }}-modules-${{ hashFiles('**/pnpm-lock.yaml') }} | |
| - name: Install deps | |
| run: yarn | |
| - name: Build the code | |
| run: yarn build:ci | |
| - name: Run ESLint | |
| run: yarn lint:ci |