fix stripe error
Build & Push / Pipeline Tests (push) Successful in 1m51s
Test / Type Check (all packages) (push) Successful in 55s
Build & Push / Build & Push Docker Image (push) Successful in 5m44s
Test / API Unit Tests (push) Successful in 1m12s
Test / Homepage Unit Tests (push) Successful in 47s
Test / Carplace Unit Tests (push) Successful in 46s
Test / Admin Unit Tests (push) Successful in 43s
Test / Dashboard Unit Tests (push) Successful in 44s
Test / API Integration Tests (push) Successful in 1m8s

This commit is contained in:
root
2026-08-09 13:44:11 -04:00
parent cfc3f371de
commit 10ca76fc1e
6 changed files with 58 additions and 22 deletions
+17 -7
View File
@@ -124,13 +124,23 @@ jobs:
node -e "require('@rollup/rollup-linux-arm64-gnu')"
fi
- run: npm run db:generate
- run: npm run type-check
- run: npm run test:api
- run: npm run test:frontends
- run: npm run db:deploy
- run: npx prisma db push --schema packages/database/prisma/schema.prisma
- run: npm run test:api:integration
- name: Generate database client
run: npm run db:generate
- name: Type check
run: npm run type-check
- name: Unit tests
run: npm run test:unit
- name: Apply test database migrations
run: npm run db:deploy
- name: Synchronize test database schema
run: npx prisma db push --schema packages/database/prisma/schema.prisma
- name: Integration tests
run: npm run test:integration
build-image:
name: Build & Push Docker Image