diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 56a0d95..e69de29 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -1,195 +0,0 @@ -name: CI/CD Pipeline - -on: - push: - branches: [main, production] - pull_request: - branches: [main, production] - -env: - REGISTRY: ghcr.io - IMAGE_NAME: ${{ github.repository }} - -jobs: - # Test Job - test: - name: Run Tests - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: '20' - cache: 'npm' - - - name: Install dependencies - run: npm ci - - - name: Create test environment file - run: | - cat > .env < .env <