10 Commits

Author SHA1 Message Date
fc25b66e2b Update actions/checkout action to v6
All checks were successful
Build Check / build (pull_request) Successful in 9m33s
2026-04-06 00:03:03 +00:00
6150c1d6e1 Update renovate.json 2026-04-02 20:14:22 +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
628d19c755 Merge pull request 'Update pnpm to v10.33.0' (#10) from renovate/pnpm-10.x into main 2026-04-01 00:04:10 +00:00
c0ce40da84 Update pnpm to v10.33.0 2026-04-01 00:03:31 +00:00
d00d833af4 Merge pull request 'Update dependency eslint-plugin-format to v1.5.0' (#9) from renovate/eslint-plugin-format-1.x-lockfile into main 2026-03-31 00:02:49 +00:00
171212ba16 Update dependency eslint-plugin-format to v1.5.0 2026-03-31 00:02:38 +00:00
4 changed files with 551 additions and 104 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@v6
- 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

@@ -33,7 +33,7 @@
"vue-router": "^4.6.4" "vue-router": "^4.6.4"
}, },
"devDependencies": { "devDependencies": {
"@antfu/eslint-config": "^7.4.3", "@antfu/eslint-config": "^8.0.0",
"@tailwindcss/vite": "^4.2.0", "@tailwindcss/vite": "^4.2.0",
"@tauri-apps/cli": "^2", "@tauri-apps/cli": "^2",
"@vitejs/plugin-vue": "^6.0.4", "@vitejs/plugin-vue": "^6.0.4",
@@ -44,5 +44,5 @@
"vite": "^7.3.1", "vite": "^7.3.1",
"vue-tsc": "^2.1.10" "vue-tsc": "^2.1.10"
}, },
"packageManager": "pnpm@10.27.0+sha512.72d699da16b1179c14ba9e64dc71c9a40988cbdc65c264cb0e489db7de917f20dcf4d64d8723625f2969ba52d4b7e2a1170682d9ac2a5dcaeaab732b7e16f04a" "packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
} }

615
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,11 +1,6 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "extends": [
"config:base" "local>spenke-nordic-ab/renovate-config"
],
"packageRules": [
{
"updateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true
}
] ]
} }