refactor: remove biome ci

This commit is contained in:
Mauricio Siu
2024-11-28 22:21:31 -06:00
parent 00883dde11
commit f102bae5d5
3 changed files with 1 additions and 3 deletions

View File

@@ -16,7 +16,6 @@ jobs:
cache: "pnpm" cache: "pnpm"
- run: pnpm install --frozen-lockfile - run: pnpm install --frozen-lockfile
- run: pnpm run server:build - run: pnpm run server:build
- run: pnpm biome ci
- run: pnpm typecheck - run: pnpm typecheck
build-and-test: build-and-test:

View File

@@ -34,7 +34,6 @@ export const SaveDockerProvider = ({ applicationId }: Props) => {
const { data, refetch } = api.application.one.useQuery({ applicationId }); const { data, refetch } = api.application.one.useQuery({ applicationId });
const { mutateAsync } = api.application.saveDockerProvider.useMutation(); const { mutateAsync } = api.application.saveDockerProvider.useMutation();
const form = useForm<DockerProvider>({ const form = useForm<DockerProvider>({
defaultValues: { defaultValues: {
dockerImage: "", dockerImage: "",

View File

@@ -42,4 +42,4 @@ commit-msg:
pre-commit: pre-commit:
commands: commands:
lint-staged: lint-staged:
run: "npx lint-staged" run: "pnpm check && npx lint-staged"