feat(ci): add ci lol

This commit is contained in:
Barrett Ruth 2025-11-09 14:48:07 -05:00
parent b98b6f084a
commit 28c3cfcf6d
2 changed files with 44 additions and 2 deletions

View file

@ -7,10 +7,14 @@
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"prepare": "husky"
"prepare": "husky",
"check": "astro check"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,astro,html,md,json,yml,yaml}": "prettier --write"
"*.{js,ts,jsx,tsx,astro,html,md,json,yml,yaml}": [
"prettier --write",
"astro check --minimumSeverity warning"
]
},
"dependencies": {
"@astrojs/mdx": "^4.3.6",