Skip to content

Chore: Run yarn lint in CI #2

Chore: Run yarn lint in CI

Chore: Run yarn lint in CI #2

Workflow file for this run

name: Lint frontend
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: '.nvrmc'
cache: 'yarn'
- run: yarn install
- run: yarn lint