ux: Add warning message when metamask is not detected in burner walle… #144
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: Code Formatting Check | |
on: [push, pull_request] | |
jobs: | |
formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "22" | |
cache: "yarn" | |
- name: Install Prettier | |
run: yarn add --dev prettier | |
- name: Check code formatting | |
run: yarn prettier --check . |