chore(deps): update python docker tag to v3.12.1 #23
|
|
@ -25,24 +25,28 @@ steps:
|
|||
|
||||
"lint:style":
|
||||
image: *frontend_image
|
||||
depends_on: ["prepare:frontend"]
|
||||
commands:
|
||||
- pnpm run prettier
|
||||
directory: frontend
|
||||
|
||||
"lint:analyze":
|
||||
image: *frontend_image
|
||||
depends_on: ["prepare:frontend"]
|
||||
commands:
|
||||
- pnpm run lint
|
||||
directory: frontend
|
||||
|
||||
"build:frontend":
|
||||
image: *frontend_image
|
||||
depends_on: ["prepare:frontend"]
|
||||
commands:
|
||||
- pnpm run build
|
||||
directory: frontend
|
||||
|
||||
"build:tsc":
|
||||
image: *frontend_image
|
||||
depends_on: ["prepare:frontend"]
|
||||
commands:
|
||||
- pnpm add typescript
|
||||
- pnpm run typecheck
|
||||
|
|
@ -50,6 +54,7 @@ steps:
|
|||
|
||||
"analyze:sbom":
|
||||
image: *frontend_image
|
||||
depends_on: ["prepare:frontend"]
|
||||
commands:
|
||||
- rm -rf node_modules
|
||||
- npm install
|
||||
|
|
@ -58,6 +63,7 @@ steps:
|
|||
|
||||
"deploy:frontend":
|
||||
image: alpine:latest
|
||||
depends_on: ["build:frontend"]
|
||||
commands:
|
||||
- echo "deploy frontend"
|
||||
- env
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ steps:
|
|||
|
||||
"lint:commitlint":
|
||||
image: node:lts-slim
|
||||
depends_on: ["prepare:commitlint"]
|
||||
commands:
|
||||
- npm install --save-dev conventional-changelog-conventionalcommits @commitlint/config-conventional commitlint@latest
|
||||
- cat commitlint.txt
|
||||
|
|
@ -22,7 +23,7 @@ steps:
|
|||
- branch: [main, dev]
|
||||
event: push
|
||||
"lint:precommit":
|
||||
image: python:3.11.6-bullseye
|
||||
image: python:3.12.1-bullseye
|
||||
commands:
|
||||
- pip install pre-commit
|
||||
- pre-commit install
|
||||
|
|
|
|||
Loading…
Reference in New Issue