Skip to content

fix lint action

fix lint action #2463

Workflow file for this run

name: ESLint CodeX
on: [push, pull_request]
jobs:
lint:
name: ESlint
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- run: yarn
- run: yarn lint