consistence height in music cards #185
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: "Lint and build" | |
on: push | |
jobs: | |
build: | |
name: Build next app | |
runs-on: ubuntu-latest | |
env: | |
NEXT_PUBLIC_NFT_STORAGE_TOKEN: ${{ secrets.NEXT_PUBLIC_NFT_STORAGE_TOKEN }} | |
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID: ${{ secrets.NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Build next app | |
run: | | |
yarn install --frozen-lockfile | |
yarn build | |
lint: | |
name: Lint next app | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Lint code | |
run: | | |
yarn install --frozen-lockfile | |
rm -rf __generated__ | |
yarn lint --max-warnings=0 |