Skip to content

Added a new orange indicator to highlight elements that are 100% in t… #26

Added a new orange indicator to highlight elements that are 100% in t…

Added a new orange indicator to highlight elements that are 100% in t… #26

Workflow file for this run

name: Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 18
- name: Install linters
run: npm install --no-package-lock eslint eslint-config-prettier eslint-plugin-compat eslint-plugin-jsdoc eslint-plugin-prettier @typescript-eslint/eslint-plugin @typescript-eslint/parser
- name: Run linters
run: npm run lint