Skip to content

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

[workflow/test] Fixing test cases and code checks

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

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
eslint:
name: "Eslint check"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
uses: ./.github/actions/install-dependencies
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run ESLint
run: yarn run lint
continue-on-error: false