feat(launchpad): Use DAO Proposal Single contract address in nft-launchpad contract config #7829
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: JS | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
jobs: | |
check-js: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: "yarn" | |
node-version-file: ".nvmrc" | |
- name: Install node modules | |
run: yarn | |
- name: Lint | |
run: make lint.js | |
- name: Build web app | |
run: yarn expo export -p web | |
- name: Check that there is no diff | |
run: git diff --exit-code |