Merge pull request #81 from h-yoshikawa44/feature/80_data-update-2024-09 #110
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: Develop Check | |
on: | |
push: | |
jobs: | |
lint-check: | |
name: Lint | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.node-version' | |
cache: npm | |
cache-dependency-path: './package-lock.json' | |
- name: Clean Install Dependencies | |
run: npm ci | |
- name: Lint & Format Check | |
run: npm run check |