Skip to content

[workflow/test] Fixing test cases and code checks #1

[workflow/test] Fixing test cases and code checks

[workflow/test] Fixing test cases and code checks #1

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
eslint:
name: "Es lint check"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Run ESLint
run: yarn run lint
continue-on-error: false