Compare commits
No commits in common. "main" and "feature/preview" have entirely different histories.
main
...
feature/pr
@ -1,49 +0,0 @@
|
|||||||
name: ci
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- "main"
|
|
||||||
tags:
|
|
||||||
- "*"
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- "main"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
docker:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container:
|
|
||||||
image: catthehacker/ubuntu:act-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Docker meta
|
|
||||||
id: meta
|
|
||||||
uses: docker/metadata-action@v5
|
|
||||||
with:
|
|
||||||
images: |
|
|
||||||
git.sebclem.fr/${{ gitea.repository }}
|
|
||||||
tags: |
|
|
||||||
type=ref,event=branch
|
|
||||||
type=ref,event=pr
|
|
||||||
type=semver,pattern={{version}}
|
|
||||||
type=semver,pattern={{major}}.{{minor}}
|
|
||||||
|
|
||||||
- name: Login to registry
|
|
||||||
if: "!startsWith('renovate/', github.ref_name)"
|
|
||||||
uses: docker/login-action@v3
|
|
||||||
with:
|
|
||||||
registry: git.sebclem.fr
|
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Build and push
|
|
||||||
uses: docker/build-push-action@v6
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
push: ${{ !startsWith('renovate/', github.ref_name) }}
|
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
|
||||||
|
|
@ -1,45 +0,0 @@
|
|||||||
# when:
|
|
||||||
# event:
|
|
||||||
# - push
|
|
||||||
# - manual
|
|
||||||
|
|
||||||
# steps:
|
|
||||||
# build-only:
|
|
||||||
# image: woodpeckerci/plugin-docker-buildx
|
|
||||||
# settings:
|
|
||||||
# repo: git.sebclem.fr/sebclem/${CI_REPO_NAME,,}
|
|
||||||
# cache_from: git.sebclem.fr/sebclem/${CI_REPO_NAME,,}
|
|
||||||
# registry: git.sebclem.fr
|
|
||||||
# dry_run: true
|
|
||||||
# logins:
|
|
||||||
# - registry: https://git.sebclem.fr
|
|
||||||
# username:
|
|
||||||
# from_secret: docker_user
|
|
||||||
# password:
|
|
||||||
# from_secret: docker_token
|
|
||||||
# when:
|
|
||||||
# - event: push
|
|
||||||
# branch: renovate/*
|
|
||||||
# - event: manual
|
|
||||||
# branch: renovate/*
|
|
||||||
|
|
||||||
# publish-dev:
|
|
||||||
# image: woodpeckerci/plugin-docker-buildx
|
|
||||||
# settings:
|
|
||||||
# repo: git.sebclem.fr/sebclem/${CI_REPO_NAME,,}
|
|
||||||
# cache_from: git.sebclem.fr/sebclem/${CI_REPO_NAME,,}
|
|
||||||
# registry: git.sebclem.fr
|
|
||||||
# tag: ${CI_COMMIT_BRANCH}
|
|
||||||
# logins:
|
|
||||||
# - registry: https://git.sebclem.fr
|
|
||||||
# username:
|
|
||||||
# from_secret: docker_user
|
|
||||||
# password:
|
|
||||||
# from_secret: docker_token
|
|
||||||
# when:
|
|
||||||
# - event: push
|
|
||||||
# branch:
|
|
||||||
# exclude: renovate/*
|
|
||||||
# - event: manual
|
|
||||||
# branch:
|
|
||||||
# exclude: renovate/*
|
|
41
.woodpecker/docker_dev.yml
Normal file
41
.woodpecker/docker_dev.yml
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- pull_request
|
||||||
|
- manual
|
||||||
|
|
||||||
|
steps:
|
||||||
|
build-only:
|
||||||
|
image: woodpeckerci/plugin-docker-buildx
|
||||||
|
settings:
|
||||||
|
repo: git.sebclem.fr/sebclem/${CI_REPO_NAME,,}
|
||||||
|
cache_from: git.sebclem.fr/sebclem/${CI_REPO_NAME,,}
|
||||||
|
registry: git.sebclem.fr
|
||||||
|
dry_run: true
|
||||||
|
logins:
|
||||||
|
- registry: https://git.sebclem.fr
|
||||||
|
username:
|
||||||
|
from_secret: docker_user
|
||||||
|
password:
|
||||||
|
from_secret: docker_token
|
||||||
|
when:
|
||||||
|
branch: renovate/*
|
||||||
|
event: [push, pull_request, manual]
|
||||||
|
|
||||||
|
publish-dev:
|
||||||
|
image: woodpeckerci/plugin-docker-buildx
|
||||||
|
settings:
|
||||||
|
repo: git.sebclem.fr/sebclem/${CI_REPO_NAME,,}
|
||||||
|
cache_from: git.sebclem.fr/sebclem/${CI_REPO_NAME,,}
|
||||||
|
registry: git.sebclem.fr
|
||||||
|
tag: ${CI_COMMIT_BRANCH}
|
||||||
|
logins:
|
||||||
|
- registry: https://git.sebclem.fr
|
||||||
|
username:
|
||||||
|
from_secret: docker_user
|
||||||
|
password:
|
||||||
|
from_secret: docker_token
|
||||||
|
when:
|
||||||
|
branch:
|
||||||
|
exclude: renovate/*
|
||||||
|
event: [push, pull_request, manual]
|
@ -3,7 +3,7 @@ when:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
build:
|
build:
|
||||||
image: node:22
|
image: node:20
|
||||||
commands:
|
commands:
|
||||||
- corepack enable
|
- corepack enable
|
||||||
- pnpm install
|
- pnpm install
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM node:22 AS builder
|
FROM node:16 AS builder
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
66
package.json
66
package.json
@ -14,51 +14,51 @@
|
|||||||
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false"
|
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@mdi/font": "7.4.47",
|
"@mdi/font": "7.3.67",
|
||||||
"@types/js-cookie": "3.0.6",
|
"@types/js-cookie": "3.0.6",
|
||||||
"@types/uuid": "10.0.0",
|
"@types/uuid": "9.0.7",
|
||||||
"axios": "1.7.7",
|
"axios": "1.6.2",
|
||||||
"jose": "5.9.6",
|
"jose": "5.1.3",
|
||||||
"js-cookie": "3.0.5",
|
"js-cookie": "3.0.5",
|
||||||
"pinia": "2.2.4",
|
"pinia": "2.1.7",
|
||||||
"pinia-plugin-persistedstate": "4.1.2",
|
"pinia-plugin-persistedstate": "3.2.0",
|
||||||
"roboto-fontface": "^0.10.0",
|
"roboto-fontface": "^0.10.0",
|
||||||
"uuid": "11.0.2",
|
"uuid": "9.0.1",
|
||||||
"vue": "3.5.12",
|
"vue": "3.3.11",
|
||||||
"vue-router": "4.4.5",
|
"vue-router": "4.2.5",
|
||||||
"vuetify": "3.7.3",
|
"vuetify": "3.4.7",
|
||||||
"webfontloader": "1.6.28"
|
"webfontloader": "1.6.28"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@rushstack/eslint-patch": "1.10.4",
|
"@rushstack/eslint-patch": "1.6.0",
|
||||||
"@types/jsdom": "21.1.7",
|
"@types/jsdom": "21.1.6",
|
||||||
"@types/node": "22.8.2",
|
"@types/node": "20.10.4",
|
||||||
"@types/webfontloader": "1.6.38",
|
"@types/webfontloader": "1.6.38",
|
||||||
"@vitejs/plugin-vue": "5.1.4",
|
"@vitejs/plugin-vue": "4.5.2",
|
||||||
"@vue/eslint-config-prettier": "10.1.0",
|
"@vue/eslint-config-prettier": "8.0.0",
|
||||||
"@vue/eslint-config-typescript": "14.1.3",
|
"@vue/eslint-config-typescript": "12.0.0",
|
||||||
"@vue/test-utils": "2.4.6",
|
"@vue/test-utils": "2.4.3",
|
||||||
"@vue/tsconfig": "0.5.1",
|
"@vue/tsconfig": "0.4.0",
|
||||||
"eslint": "9.13.0",
|
"eslint": "8.55.0",
|
||||||
"eslint-plugin-vue": "9.30.0",
|
"eslint-plugin-vue": "9.19.2",
|
||||||
"husky": "9.1.6",
|
"husky": "8.0.3",
|
||||||
"jsdom": "25.0.1",
|
"jsdom": "23.0.1",
|
||||||
"lint-staged": "15.2.10",
|
"lint-staged": "15.2.0",
|
||||||
"pinst": "3.0.0",
|
"pinst": "3.0.0",
|
||||||
"prettier": "3.3.3",
|
"prettier": "3.1.1",
|
||||||
"sass": "1.80.4",
|
"sass": "1.69.5",
|
||||||
"sass-loader": "16.0.2",
|
"sass-loader": "13.3.2",
|
||||||
"typescript": "5.6.3",
|
"typescript": "5.3.3",
|
||||||
"vite": "5.4.10",
|
"vite": "5.0.8",
|
||||||
"vite-plugin-vuetify": "2.0.4",
|
"vite-plugin-vuetify": "2.0.1",
|
||||||
"vitest": "2.1.4",
|
"vitest": "1.0.4",
|
||||||
"vue-cli-plugin-vuetify": "2.5.8",
|
"vue-cli-plugin-vuetify": "2.5.8",
|
||||||
"vue-tsc": "2.1.8",
|
"vue-tsc": "1.8.25",
|
||||||
"webpack-plugin-vuetify": "3.0.3"
|
"webpack-plugin-vuetify": "3.0.1"
|
||||||
},
|
},
|
||||||
"lint-staged": {
|
"lint-staged": {
|
||||||
"*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}": "eslint --cache --fix",
|
"*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}": "eslint --cache --fix",
|
||||||
"*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts,css,scss,md,yml,yaml,json}": "prettier --write"
|
"*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts,css,scss,md,yml,yaml,json}": "prettier --write"
|
||||||
},
|
},
|
||||||
"packageManager": "pnpm@9.12.3"
|
"packageManager": "pnpm@8.12.1"
|
||||||
}
|
}
|
||||||
|
8606
pnpm-lock.yaml
8606
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
@ -1,24 +1,8 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
"extends": [
|
"extends": [
|
||||||
"config:base",
|
"config:base"
|
||||||
"group:allNonMajor"
|
|
||||||
],
|
],
|
||||||
"commitMessagePrefix": ":arrow_up:",
|
"commitMessagePrefix": ":arrow_up:",
|
||||||
"prHourlyLimit": 20,
|
"prHourlyLimit": 20
|
||||||
"packageRules": [
|
|
||||||
{
|
|
||||||
"matchDepTypes": ["packageManager"],
|
|
||||||
"automerge": true,
|
|
||||||
"automergeType": "branch",
|
|
||||||
"ignoreTests": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"matchDepTypes": ["devDependencies"],
|
|
||||||
"matchUpdateTypes": ["minor", "patch"],
|
|
||||||
"automerge": true,
|
|
||||||
"automergeType": "branch",
|
|
||||||
"ignoreTests": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user