1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-08-04 20:55:19 +02:00

refactor(workflows): simplify trigger paths for backend and frontend workflows

fix(dependencies): add overrides for esbuild in frontend package.json
This commit is contained in:
Sean Morley 2025-06-23 17:24:27 -04:00
parent 00a6e67a5f
commit b6e5e4abc0
4 changed files with 5 additions and 32 deletions

View file

@ -4,19 +4,8 @@ permissions:
contents: read
on:
push:
branches:
- main
- development
paths:
- "backend/**"
pull_request:
branches:
- main
- development
paths:
- "backend/**"
push:
jobs:
build:

View file

@ -4,19 +4,8 @@ permissions:
contents: read
on:
push:
branches:
- main
- development
paths:
- "frontend/**"
pull_request:
branches:
- main
- development
paths:
- "frontend/**"
push:
jobs:
build:

View file

@ -5,18 +5,10 @@ on:
branches:
- main
- development
paths:
- "backend/**"
- "frontend/**"
pull_request:
branches:
- main
- development
paths:
- "backend/**"
- "frontend/**"
schedule:
- cron: "0 8 * * 1" # Weekly scan on Mondays at 8 AM UTC

View file

@ -50,5 +50,8 @@
"qrcode": "^1.5.4",
"svelte-i18n": "^4.0.1",
"svelte-maplibre": "^0.9.8"
},
"overrides": {
"esbuild": "^0.25.0"
}
}