Skip to content

Add new TokenCollectorStatus to indicate that a token is inactive, ad… #188

Add new TokenCollectorStatus to indicate that a token is inactive, ad…

Add new TokenCollectorStatus to indicate that a token is inactive, ad… #188

Workflow file for this run

name: Lint CI
on:
push:
branches:
- master
paths:
- 'frontend/**'
pull_request:
branches:
- master
paths:
- 'frontend/**'
jobs:
run-linters:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
- name: Set yarn version
run: yarn set version 1.22.17
- name: Install Node.js dependencies
run: yarn install --frozen-lockfile
- name: ESLint
run: yarn lint:eslint
- name: Prettier
run: yarn lint:eslint
- name: TSC
run: yarn lint:typescript