Añadidos settings de cookies y privacidad
Run Tests on Branches / Detect Changes (push) Successful in 17s
Run Tests on Branches / Backend Tests (push) Successful in 2m30s
Run Tests on Branches / Frontend Tests (push) Successful in 1m54s
Run Tests on Branches / Frontend Mobile Tests (push) Successful in 1m49s
Run Tests on Branches / Parapharmacy API Tests (push) Successful in 1m48s
Run Tests on Branches / PIP Platform Tests (push) Has been skipped

This commit is contained in:
Antoni Nuñez Romeu
2026-08-26 17:14:05 +02:00
parent 80c473e439
commit 97008caf31
13 changed files with 185 additions and 12 deletions
+21
View File
@@ -5,8 +5,29 @@ on:
push:
branches:
- main
schedule:
- cron: '0 6 * * 1'
jobs:
audit-dependencies:
name: Dependency Audit
runs-on: ubuntu-latest
timeout-minutes: 10
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: Audit for known vulnerabilities
run: npm audit --omit=dev --audit-level=high
- name: Audit (all, informational)
if: always()
run: npm audit --audit-level=moderate || true
detect-changes:
name: Detect Changes
runs-on: ubuntu-latest