-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
first-test-for-github-action-woekflows
- Loading branch information
Showing
1 changed file
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
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 }} |