Skip to content

Commit

Permalink
Revert testing changes
Browse files Browse the repository at this point in the history
  • Loading branch information
TyHil committed Jan 30, 2024
1 parent 6914dd6 commit 36e4243
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 14 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/lint-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"jsx": "preserve",
"incremental": true,
"paths": {
"@/*": ["./src/*"]
}
"@/*": ["./src/*"],
},
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
"exclude": ["node_modules"],
}

0 comments on commit 36e4243

Please sign in to comment.