mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-08-05 13:15:18 +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:
parent
00a6e67a5f
commit
b6e5e4abc0
4 changed files with 5 additions and 32 deletions
13
.github/workflows/backend-test.yml
vendored
13
.github/workflows/backend-test.yml
vendored
|
@ -4,19 +4,8 @@ permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
- development
|
|
||||||
paths:
|
|
||||||
- "backend/**"
|
|
||||||
|
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
push:
|
||||||
- main
|
|
||||||
- development
|
|
||||||
paths:
|
|
||||||
- "backend/**"
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
13
.github/workflows/frontend-test.yml
vendored
13
.github/workflows/frontend-test.yml
vendored
|
@ -4,19 +4,8 @@ permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
- development
|
|
||||||
paths:
|
|
||||||
- "frontend/**"
|
|
||||||
|
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
push:
|
||||||
- main
|
|
||||||
- development
|
|
||||||
paths:
|
|
||||||
- "frontend/**"
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
8
.github/workflows/trivy_security_scans.yml
vendored
8
.github/workflows/trivy_security_scans.yml
vendored
|
@ -5,18 +5,10 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- development
|
- development
|
||||||
paths:
|
|
||||||
- "backend/**"
|
|
||||||
- "frontend/**"
|
|
||||||
|
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- development
|
- development
|
||||||
paths:
|
|
||||||
- "backend/**"
|
|
||||||
- "frontend/**"
|
|
||||||
|
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 8 * * 1" # Weekly scan on Mondays at 8 AM UTC
|
- cron: "0 8 * * 1" # Weekly scan on Mondays at 8 AM UTC
|
||||||
|
|
||||||
|
|
|
@ -50,5 +50,8 @@
|
||||||
"qrcode": "^1.5.4",
|
"qrcode": "^1.5.4",
|
||||||
"svelte-i18n": "^4.0.1",
|
"svelte-i18n": "^4.0.1",
|
||||||
"svelte-maplibre": "^0.9.8"
|
"svelte-maplibre": "^0.9.8"
|
||||||
|
},
|
||||||
|
"overrides": {
|
||||||
|
"esbuild": "^0.25.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue