chore(deps): update python docker tag to v3.12.1 #23

Merged
fjadmin merged 4 commits from renovate/python-3.x into main 2024-01-28 20:59:37 +00:00
2 changed files with 8 additions and 1 deletions

View File

@ -25,24 +25,28 @@ steps:
"lint:style": "lint:style":
image: *frontend_image image: *frontend_image
depends_on: ["prepare:frontend"]
commands: commands:
- pnpm run prettier - pnpm run prettier
directory: frontend directory: frontend
"lint:analyze": "lint:analyze":
image: *frontend_image image: *frontend_image
depends_on: ["prepare:frontend"]
commands: commands:
- pnpm run lint - pnpm run lint
directory: frontend directory: frontend
"build:frontend": "build:frontend":
image: *frontend_image image: *frontend_image
depends_on: ["prepare:frontend"]
commands: commands:
- pnpm run build - pnpm run build
directory: frontend directory: frontend
"build:tsc": "build:tsc":
image: *frontend_image image: *frontend_image
depends_on: ["prepare:frontend"]
commands: commands:
- pnpm add typescript - pnpm add typescript
- pnpm run typecheck - pnpm run typecheck
@ -50,6 +54,7 @@ steps:
"analyze:sbom": "analyze:sbom":
image: *frontend_image image: *frontend_image
depends_on: ["prepare:frontend"]
commands: commands:
- rm -rf node_modules - rm -rf node_modules
- npm install - npm install
@ -58,6 +63,7 @@ steps:
"deploy:frontend": "deploy:frontend":
image: alpine:latest image: alpine:latest
depends_on: ["build:frontend"]
commands: commands:
- echo "deploy frontend" - echo "deploy frontend"
- env - env

View File

@ -14,6 +14,7 @@ steps:
"lint:commitlint": "lint:commitlint":
image: node:lts-slim image: node:lts-slim
depends_on: ["prepare:commitlint"]
commands: commands:
- npm install --save-dev conventional-changelog-conventionalcommits @commitlint/config-conventional commitlint@latest - npm install --save-dev conventional-changelog-conventionalcommits @commitlint/config-conventional commitlint@latest
- cat commitlint.txt - cat commitlint.txt
@ -22,7 +23,7 @@ steps:
- branch: [main, dev] - branch: [main, dev]
event: push event: push
"lint:precommit": "lint:precommit":
image: python:3.11.6-bullseye image: python:3.12.1-bullseye
commands: commands:
- pip install pre-commit - pip install pre-commit
- pre-commit install - pre-commit install