Skip to content

round vote & polling figures, add contact candidate line #632

round vote & polling figures, add contact candidate line

round vote & polling figures, add contact candidate line #632

Workflow file for this run

name: Lint Pull Request
on:
- push
jobs:
run-linters:
name: Lint & Prettier
runs-on: ubuntu-latest
steps:
- name: Checkout latest code from main branch
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: lint
run: npm run lint
- name: typecheck
run: npm run typecheck
- name: prettier
run: npm run prettier