Skip to content

Commit

Permalink
Merge pull request #71 from nkc-ug/futer/ci
Browse files Browse the repository at this point in the history
Eslintの実行位置変更
  • Loading branch information
hayatosuzuki3228 authored Aug 16, 2023
2 parents 6620522 + 2174953 commit 28c8ecc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: ['main', 'develop']

jobs:
eslint:
eslint:
name: Run eslint scanning
runs-on: ubuntu-latest
steps:
Expand All @@ -21,8 +21,8 @@ jobs:
- name: Run ESLint #ESLintを実行する
run:
npx eslint . --ext .js,.jsx,.ts,.tsx --format @microsoft/eslint-formatter-sarif
--output-file eslint-results.sarif ./src
npx eslint ./src --ext .js,.jsx,.ts,.tsx --format @microsoft/eslint-formatter-sarif
--output-file eslint-results.sarif
continue-on-error: true

- name: Upload analysis results to GitHub #githubに解析結果をアップロード
Expand Down

0 comments on commit 28c8ecc

Please sign in to comment.