5 Commits

Author SHA1 Message Date
92a3168f2a Update pnpm/action-setup action to v5
All checks were successful
Build Check / build (pull_request) Successful in 9m33s
2026-04-02 17:58:52 +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
526c529a45 Merge pull request 'Update dependency @antfu/eslint-config to v8' (#11) from renovate/antfu-eslint-config-8.x into main
Reviewed-on: #11
2026-04-02 10:33:07 +00:00
cb8b67ae21 Update dependency @antfu/eslint-config to v8 2026-04-02 00:03:22 +00:00
3 changed files with 583 additions and 209 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@v5
- 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

@@ -33,11 +33,11 @@
"vue-router": "^4.6.4"
},
"devDependencies": {
"@antfu/eslint-config": "^7.4.3",
"@antfu/eslint-config": "^8.0.0",
"@tailwindcss/vite": "^4.2.0",
"@tauri-apps/cli": "^2",
"@vitejs/plugin-vue": "^6.0.4",
"eslint": "^10.0.0",
"eslint": "^9.39.2",
"eslint-plugin-format": "^1.4.0",
"tailwindcss": "^4.2.0",
"typescript": "~5.9.3",

761
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff