- ✅ Ticket 1.1: Estructura Clean Architecture en backend - ✅ Ticket 1.2: Schemas Zod compartidos - ✅ Ticket 1.3: Refactorización drugs.ts (1362 → 8 archivos modulares) - ✅ Ticket 1.4: Refactorización procedures.ts (3583 → 6 archivos modulares) - ✅ Ticket 1.5: Eliminación de duplicidades (~50 líneas) Cambios principales: - Creada estructura Clean Architecture en backend/src/ - Schemas Zod compartidos en backend/src/shared/schemas/ - Refactorización modular de drugs y procedures - Utilidades genéricas en src/utils/ (filter, validation) - Eliminados scripts obsoletos y documentación antigua - Corregidos errores: QueryClient, import test-error-handling - Build verificado y funcionando correctamente
60 lines
1.8 KiB
YAML
60 lines
1.8 KiB
YAML
name: ci
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-20.04, macos-11.0, windows-2019]
|
|
nodeVersion: [14, 16, 18, 20]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Use Node.js ${{ matrix.nodeVersion }}
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.nodeVersion }}
|
|
- name: Test
|
|
run: npm test
|
|
- name: Package
|
|
if: startsWith(github.ref, 'refs/tags/') || startsWith(github.ref, 'refs/heads/master')
|
|
run: npx node-pre-gyp package
|
|
- name: Upload
|
|
uses: actions/upload-artifact@v3
|
|
if: matrix.nodeVersion == '14' && (startsWith(github.ref, 'refs/tags/') || startsWith(github.ref, 'refs/heads/master'))
|
|
with:
|
|
name: bcrypt-lib-${{ matrix.os }}-${{ matrix.nodeVersion }}
|
|
path: build/stage/**/bcrypt_lib*.tar.gz
|
|
|
|
build-alpine:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
nodeVersion: [14, 16, 18, 20]
|
|
container:
|
|
image: node:${{ matrix.nodeVersion }}-alpine
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install dependencies
|
|
run: |
|
|
apk add make g++ python3
|
|
- name: Test
|
|
run: |
|
|
npm test --unsafe-perm
|
|
- name: Package
|
|
if: startsWith(github.ref, 'refs/tags/') || startsWith(github.ref, 'refs/heads/master')
|
|
run: npx node-pre-gyp package --unsafe-perm
|
|
- name: Upload
|
|
if: matrix.nodeVersion == '14' && (startsWith(github.ref, 'refs/tags/') || startsWith(github.ref, 'refs/heads/master'))
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: bcrypt-lib-alpine-${{ matrix.nodeVersion }}
|
|
path: build/stage/**/bcrypt_lib*.tar.gz
|