Skip to content

フロントエンドで認証 #89

フロントエンドで認証

フロントエンドで認証 #89

Workflow file for this run

name: Client CI
on:
push:
branches: [main]
paths:
- "client/**"
pull_request:
branches: [main]
paths:
- "client/**"
defaults:
run:
working-directory: ./client
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
cache-dependency-path: "./client/package-lock.json"
- run: npm ci
- run: npm run lint:nofix
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
cache-dependency-path: "./client/package-lock.json"
- run: npm ci
- run: npm run format:nofix
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
cache-dependency-path: "./client/package-lock.json"
- run: npm ci
- run: npm run typecheck