Skip to content

Commit 6d5d02c

Browse files
committed
ESLint GitHub Actionsを追加
1 parent 04b4845 commit 6d5d02c

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/eslint.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: ESLint
2+
on:
3+
pull_request:
4+
push:
5+
branches:
6+
- main
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: Install modules
13+
run: yarn
14+
- name: Run ESLint
15+
run: eslint . --ext .js,.jsx,.ts,.tsx

0 commit comments

Comments
 (0)