Files
nexus/.gitignore
T
devops 66b833b68b
CI - Build & Test / Backend (.NET) (push) Successful in 24s
CI - Build & Test / Frontend (Vue/TS) (push) Failing after 7s
CI - Build & Test / Security Check (push) Successful in 3s
fix(ci): commit pnpm-lock.yaml for frozen-lockfile CI
The --frozen-lockfile flag requires the lockfile to be present
in the checkout. Previously pnpm-lock.yaml was gitignored, so
it was absent from CI checkouts.

Lockfiles SHOULD be version-controlled for reproducible builds.
This also enables CI to detect when lockfile is outdated vs
package.json.
2026-06-09 21:15:13 +02:00

34 lines
309 B
Plaintext

# Build outputs
**/bin/
**/obj/
**/dist/
**/node_modules/
# Environment
.env
!.env.example
!.env.template
# IDE
.idea/
.vs/
.vscode/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Docker
docker-compose.override.yml
# Logs
*.log
# Temporary
*.tmp
*.bak
# pnpm (lockfile IS committed for reproducible CI builds)