diff --git a/.github/workflows/lint-check.yaml b/.github/workflows/lint-check.yaml index cb09c93..9efac22 100644 --- a/.github/workflows/lint-check.yaml +++ b/.github/workflows/lint-check.yaml @@ -9,14 +9,5 @@ jobs: with: node-version: '18' - run: npm install next - - name: Debug Info - run: | - echo "Node Version: $(node --version)" - echo "Prettier Version: $(npx prettier --version)" - echo "Prettier Config: $(cat .prettierrc)" - echo "GitHub Actions Environment: ${{ toJson(env) }}" - run: npm run lint:check - - run: npm run format - - run: cat tsconfig.json - - run: git diff tsconfig.json - run: npm run format:check diff --git a/package.json b/package.json index 16cc559..95a9893 100644 --- a/package.json +++ b/package.json @@ -8,8 +8,8 @@ "start": "next start", "lint:check": "next lint", "lint": "next lint --fix", - "format": "prettier --write . --log-level debug", - "format:check": "prettier --check . --log-level debug" + "format": "prettier --write .", + "format:check": "prettier --check ." }, "dependencies": { "@headlessui/react": "^1.7.17", diff --git a/tsconfig.json b/tsconfig.json index 824008a..89f2b01 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,9 +15,9 @@ "jsx": "preserve", "incremental": true, "paths": { - "@/*": ["./src/*"] - } + "@/*": ["./src/*"], + }, }, "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], - "exclude": ["node_modules"] + "exclude": ["node_modules"], }