Skip to content

他ブラウザへの対応1 #91

他ブラウザへの対応1

他ブラウザへの対応1 #91

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
cache: yarn
node-version-file: package.json
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run ESLint
uses: reviewdog/action-eslint@v1
with:
fail_on_error: true
eslint_flags: '. --ext .tsx,.ts'
filter_mode: ${{ (github.ref_name == 'master' && 'nofilter') || 'added' }}