Fix CI
Lint / lint (push) Successful in 24s
Test build / test-build (pull_request) Failing after 1m12s

This commit is contained in:
Julien Valverdé
2026-08-15 01:34:21 +02:00
parent 354d376fa0
commit b3f9463440
4 changed files with 55 additions and 8 deletions
+52
View File
@@ -0,0 +1,52 @@
# Version control and local agent/editor metadata
.git
.gitea
.github
.agents
.codex
.vscode
# Dependencies and package-manager caches
node_modules
.npm
.yarn
.pnpm-store
.bun
# Build output and task-runner caches
dist
build
out
.turbo
*.tsbuildinfo
.cache
.parcel-cache
.docusaurus
.vite
*.vite*
# Test, coverage, and diagnostic output
coverage
.nyc_output
*.lcov
reports
report.*.json
# Logs and temporary files
*.log
*.pid
*.seed
tmp
temp
*.tmp
*.swp
*.swo
# Local environment and secrets
.env
.env.*
!.env.example
# Package artifacts
*.tgz
*.tar
+1 -1
View File
@@ -8,7 +8,7 @@ jobs:
steps:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Clone repo
- name: Checkout
uses: actions/checkout@v6
- name: Install dependencies
run: bun install --frozen-lockfile
+1 -6
View File
@@ -20,7 +20,7 @@ jobs:
username: ${{ secrets.DOCKER_REGISTRY_USERNAME }}
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
- name: Clone repo
- name: Checkout
uses: actions/checkout@v6
- name: Install dependencies
run: bun install --frozen-lockfile
@@ -55,11 +55,6 @@ jobs:
token: ${{ secrets.NPM_TOKEN }}
registry: https://registry.npmjs.org
- name: Clean before Docker build
run: |
bun clean:cache
bun clean:dist
bun clean:modules
- name: Generate Docker metadata
id: meta
uses: docker/metadata-action@v5
+1 -1
View File
@@ -16,7 +16,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Clone repo
- name: Checkout
uses: actions/checkout@v6
- name: Install dependencies
run: bun install --frozen-lockfile