WIP: working on workflow
ci/woodpecker/push/lint_general Pipeline was successful Details
ci/woodpecker/push/frontend Pipeline failed Details

pull/35/head
Richard Attermeyer 2024-01-29 07:01:58 +00:00
parent 75fc844b8a
commit 6fd8c14446
2 changed files with 5 additions and 3 deletions

View File

@ -21,12 +21,14 @@ steps:
depends_on: ["prepare:version"] depends_on: ["prepare:version"]
commands: commands:
- pnpm install - pnpm install
- ls -ltr ./node_modules
directory: frontend directory: frontend
"lint:style": "lint:style":
image: *frontend_image image: *frontend_image
depends_on: ["prepare:frontend"] depends_on: ["prepare:frontend"]
commands: commands:
- ls -ltr ./node_modules
- pnpm run prettier - pnpm run prettier
directory: frontend directory: frontend

View File

@ -13,10 +13,10 @@
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"baseUrl": ".", "baseUrl": ".",
"paths": { "paths": {
"~/*": ["./app/*"] "~/*": ["./app/*"],
}, },
// Remix takes care of building everything in `remix build`. // Remix takes care of building everything in `remix build`.
"noEmit": true "noEmit": true,
} },
} }