Skip to content

refactor: 依存関係のリファクタリング (#15) #16

refactor: 依存関係のリファクタリング (#15)

refactor: 依存関係のリファクタリング (#15) #16

Workflow file for this run

name: Check
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Setup | Checkout
uses: actions/checkout@v4
- name: Setup | Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Setup | Install Dependencies
run: npm ci
- name: Run | Lint
run: npm run lint