3 Commits

Author SHA1 Message Date
52b26691f1 Update dependency vue-router to v5
All checks were successful
Build Check / build (pull_request) Successful in 9m30s
2026-04-02 17:58:05 +00:00
8acd94059f Remove pnpm version pinning in GitHub Actions build workflow 2026-04-02 18:12:15 +02:00
5a72dc9e8e Add GitHub Actions workflow for build checks on pull requests
- Configure `.gitea/workflows/build.yaml` to run builds on `main` branch pull requests.
- Include steps for dependency installation, Node.js setup, and build execution using pnpm.
2026-04-02 18:04:33 +02:00
3 changed files with 443 additions and 222 deletions

View File

@@ -0,0 +1,27 @@
name: Build Check
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run Build
run: pnpm run build

View File

@@ -30,7 +30,7 @@
"sherlockjs": "^1.4.2",
"uuid": "^13.0.0",
"vue": "^3.5.28",
"vue-router": "^4.6.4"
"vue-router": "^5.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^8.0.0",
@@ -41,7 +41,7 @@
"eslint-plugin-format": "^1.4.0",
"tailwindcss": "^4.2.0",
"typescript": "~5.9.3",
"vite": "^8.0.0",
"vite": "^7.3.1",
"vue-tsc": "^2.1.10"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"

634
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff