Merge pull request #77 from takatoshiinaoka/dependabot/npm_and_yarn/n… #197
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check eslint format. | |
on: push | |
jobs: | |
run_eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
- name: Install Dependencies | |
run: | | |
yarn | |
- name: Run eslint | |
run: | | |
yarn eslint --ext '.js,.ts' --ignore-path .gitignore . |