[Frontend] Fixes a bug with the QR code modal being able to be toggled via the connect wallet button #48
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: Build | |
on: [pull_request] | |
jobs: | |
build_on_linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@master | |
with: | |
node-version: 18 | |
- name: install dependencies | |
run: npm install | |
- name: build | |
run: npm run make | |
build_on_mac: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- uses: actions/setup-node@master | |
with: | |
node-version: 18 | |
- name: install dependencies | |
run: npm install | |
- name: build | |
run: npm run make | |
build_on_win: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@master | |
with: | |
node-version: 18 | |
- name: install dependencies | |
run: npm install | |
- name: build | |
run: npm run make |