Skip to content

fix: 該当のユーザーがいないときにエラーになってしまう問題を修正 (#17) #22

fix: 該当のユーザーがいないときにエラーになってしまう問題を修正 (#17)

fix: 該当のユーザーがいないときにエラーになってしまう問題を修正 (#17) #22

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