Skip to content

Frontend for treasury transfer status #14

Frontend for treasury transfer status

Frontend for treasury transfer status #14

Workflow file for this run

name: ESLint
on:
pull_request:
paths:
- 'frontend/**'
jobs:
eslint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
run: npm ci
- name: Run lint
run: npm run lint