Skip to content

refactor: use console.warn instead of console.error in catch blocks of KDA-USD price update workflow and node/statistics cache #461

refactor: use console.warn instead of console.error in catch blocks of KDA-USD price update workflow and node/statistics cache

refactor: use console.warn instead of console.error in catch blocks of KDA-USD price update workflow and node/statistics cache #461

Workflow file for this run

name: 'Linter'
on:
pull_request:
branches: [main, develop]
push:
branches: [main, develop]
jobs:
lint:
name: Run Linter
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check formatting
run: yarn prettier --check "**/*.{yml,yaml,json,md,js,ts}"