Skip to content

Commit

Permalink
clean fix-build-error
Browse files Browse the repository at this point in the history
  • Loading branch information
Aakashmoondive502 committed Dec 13, 2024
1 parent 5f5f7fc commit 130aba8
Showing 1 changed file with 2 additions and 64 deletions.
66 changes: 2 additions & 64 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,65 +1,3 @@
# name: CI
# # This is the triggers block

# on:
# pull_request:
# branches:
# - main
# push:
# branches:
# - main

# jobs:
# build-and-test:
# name: Build the project
# # Run on which machine
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: Install Dependencies
# run: npm ci
# - name: Run ESLint
# run: npm run lint
# - name: Test and Coverage
# run: npm run test
# env:
# DB_HOST: ${{ secrets.TEST_DB_HOST }}
# DB_PORT: ${{ secrets.TEST_DB_PORT }}
# DB_USERNAME: ${{ secrets.TEST_DB_USERNAME }}
# DB_PASSWORD: ${{ secrets.TEST_DB_PASSWORD }}
# DB_NAME: ${{ secrets.TEST_DB_NAME }}
# REFRESH_SECRET_KEY: ${{ secrets.REFRESH_SECRET_KEY }}
# JWKS_URI: ${{ secrets.JWKS_URI }}
# PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
# - name: Build TypeScript
# run: npm run build
# - name: SonarCloud Scan
# uses: SonarSource/sonarcloud-github-action@master
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

# build-and-push-docker:
# name: Build and Push Docker Image
# needs: build-and-test
# runs-on: ubuntu-latest
# env:
# IMAGE_NAME: aakash1707/mernstack-auth-service
# IMAGE_TAG: build-${{ github.run_number }}
# if: github.ref == 'refs/heads/main' && github.event_name == 'push'
# steps:
# - name: Checkout Repository
# uses: actions/checkout@v3
# - name: Log into Docker Hub
# uses: docker/login-action@v1
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_PASSWORD }}
# - name: Build Docker Image
# run: docker build -t ${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }} -f docker/prod/Dockerfile .
# - name: Push Docker Image to Docker Hub
# run: docker push ${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}

name: CI
# This is the triggers block

Expand All @@ -82,8 +20,8 @@ jobs:
run: npm ci
- name: Run ESLint
run: npm run lint
# - name: Test and Coverage
# run: npm run test
# - name: Test and Coverage
# run: npm run test
env:
DB_HOST: ${{ secrets.TEST_DB_HOST }}
DB_PORT: ${{ secrets.TEST_DB_PORT }}
Expand Down

0 comments on commit 130aba8

Please sign in to comment.