Fixed CI/CD and .env vars
Run Tests on Branches / Detect Changes (push) Successful in 13s
Run Tests on Branches / Backend Tests (push) Successful in 1m45s
Run Tests on Branches / Frontend Tests (push) Successful in 1m46s
Run Tests on Branches / Frontend Mobile Tests (push) Has been skipped
Run Tests on Branches / Parapharmacy API Tests (push) Has been skipped
Run Tests on Branches / PIP Platform Tests (push) Failing after 1m37s

This commit is contained in:
Antoni Nuñez Romeu
2026-07-16 18:10:17 +02:00
parent 8763f54071
commit cf087fc0b7
4 changed files with 163 additions and 16 deletions
+20
View File
@@ -108,3 +108,23 @@ jobs:
run: npm rebuild sqlite3 bcrypt --workspace=farma-clic-parapharmacy-api
- name: Run Parapharmacy API Tests
run: npm test --workspace=farma-clic-parapharmacy-api
test-pip-platform:
name: PIP Platform Tests
needs: detect-changes
if: needs.detect-changes.outputs.backend == 'true'
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Install pip-platform native deps
run: npm rebuild sqlite3 bcrypt --workspace=farma-clic-pip-platform
- name: Run PIP Platform Tests
run: npm test --workspace=farma-clic-pip-platform