Skip to content

Merge pull request #81 from h-yoshikawa44/feature/80_data-update-2024-09 #110

Merge pull request #81 from h-yoshikawa44/feature/80_data-update-2024-09

Merge pull request #81 from h-yoshikawa44/feature/80_data-update-2024-09 #110

Workflow file for this run

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