Skip to content

Commit 3b3b26c

Browse files
committed
fixed action
1 parent b96a271 commit 3b3b26c

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/fe_e2e.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
runs-on: ubuntu-latest
1111
env:
1212
GROQ_API_KEY: ${{ secrets.GROQ_API_KEY }}
13-
DB_URL: postgresql+asyncpg://admin:admin123@localhost:5432/mydb
13+
DB_URL: ${{ secrets.DB_URL }}
1414
REDIS_HOST: localhost
1515
REDIS_PORT: 6379
1616
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }}
1717
QDRANT_URL: http://localhost:6333
18-
JWT_SECRET_KEY: supersecretkey
18+
JWT_SECRET_KEY: ${{ secrets.JWT_SECRET_KEY }}
1919

2020
steps:
2121
- uses: actions/checkout@v4
@@ -101,8 +101,8 @@ jobs:
101101
uses: actions/upload-artifact@v3
102102
with:
103103
name: coverage
104-
path: coverage/
105-
working-directory: frontend
104+
path: frontend/coverage/
105+
106106

107107
# 8. SonarQube Analysis
108108
- name: Run SonarQube Scanner
@@ -112,6 +112,5 @@ jobs:
112112
organization: navodpeiris
113113
token: ${{ secrets.SONAR_TOKEN }}
114114
extraProperties: |
115-
sonar.javascript.lcov.reportPaths=coverage/lcov.info
116-
sonar.sources=src
117-
working-directory: frontend
115+
sonar.javascript.lcov.reportPaths=frontend/coverage/lcov.info
116+
sonar.sources=frontend/src

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
## Note Maker
1+
## Note Maker
2+
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=NavodPeiris_NoteMaker&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=NavodPeiris_NoteMaker)
23

34
Note Maker is not your average notes app. It provides you with the ability to chat with your notes. It constructs knowledge graph using your notes
45

0 commit comments

Comments
 (0)