Skip to content

feat: update ProposalCard to conditionally render based on wallet con… #25

feat: update ProposalCard to conditionally render based on wallet con…

feat: update ProposalCard to conditionally render based on wallet con… #25

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- main
- staging
- dev
push:
branches:
- main
- staging
- dev
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: 'read'
actions: 'read'
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/[email protected]
- name: Set up Node.js 20.x
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: 'pnpm'
registry-url: 'https://npm.pkg.github.com'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run lint
run: pnpm lint
- name: Run prettier check
run: pnpm prettier:check