diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index b1d8e3b0d7..0000000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: CI Pipeline - -on: - push: - branches: - - main - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - - name: Setup Node.js - uses: actions/setup-node@v3 - with: - node-version: '18.x' - cache: 'npm' - - - name: Start MongoDB - uses: supercharge/mongodb-github-action@1.9.0 - with: - mongodb-version: '6.0' - - - name: Install dependencies - working-directory: backend/question-service - run: npm ci - - - name: Run Tests - working-directory: backend/question-service - run: npm run test-ci diff --git a/.gitignore b/.gitignore index 46ccfe3c20..2aa0a884a9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ node_modules/ docker-compose.prod* +.github/workflows/ci.yml