Skip to content

fix(db): updated database and added new metric #3

fix(db): updated database and added new metric

fix(db): updated database and added new metric #3

Workflow file for this run

name: ESLint Check
on:
push:
branches:
- '*'
pull_request:
types: [opened, reopened, synchronize]
jobs:
lint:
name: ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint