Skip to content
This repository has been archived by the owner on Dec 25, 2024. It is now read-only.

add

add #13

Workflow file for this run

name: Lint
on:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: eslint
uses: reviewdog/action-eslint@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
eslint_flags: "src/**/*.{ts,tsx}"
fail_on_error: true
workdir: "front"