Cultiva SaaS API — stack detectado automáticamente · 2 plataformas generadas
Resumen de generación
Flujo del pipeline
Stack detectado — cultiva-saas-api
Pipelines generados
name: CI on: push: branches: [main, develop] pull_request: branches: [main, develop] jobs: node-ci: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: '20' cache: 'npm' - run: pnpm install --frozen-lockfile - run: npm run lint - run: python3 -m ruff check . - run: npm test - run: python3 -m pytest - run: npm run build python-ci: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: '3.12' - run: python3 -m pip install -U pip - run: pip install -r requirements.txt - run: python3 -m pytest
stages: - lint - test - build node_lint: image: node:20 stage: lint script: - pnpm install --frozen-lockfile - npm run lint - python3 -m ruff check . node_test: image: node:20 stage: test script: - pnpm install --frozen-lockfile - npm test - python3 -m pytest node_build: image: node:20 stage: build script: - pnpm install --frozen-lockfile - npm run build python_test: image: python:3.12 stage: test script: - python3 -m pip install -U pip - pip install -r requirements.txt - python3 -m pytest