Skip to content

fix: ランディング色修正 #47

fix: ランディング色修正

fix: ランディング色修正 #47

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
run: npm ci
- name: Run Prettier
run: npx prettier --ignore-path .gitignore -l .
- name: Run ESLint
run: npx eslint --ignore-pattern .gitignore .
- name: Run TypeScript compiler
run: npx tsc