Skip to content

Commit fd20b85

Browse files
committed
Fix CI/CD pipeline issues
1 parent 45144cc commit fd20b85

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
node-version: ${{ matrix.node-version }}
3030
cache: 'npm'
31-
cache-dependency-path: frontend/package-lock.json
31+
cache-dependency-path: package-lock.json
3232

3333
- name: Install dependencies
3434
run: npm ci
@@ -137,7 +137,7 @@ jobs:
137137
with:
138138
node-version: '20.x'
139139
cache: 'npm'
140-
cache-dependency-path: frontend/package-lock.json
140+
cache-dependency-path: package-lock.json
141141

142142
- name: Setup Python
143143
uses: actions/setup-python@v4
@@ -207,7 +207,7 @@ jobs:
207207
with:
208208
node-version: '20.x'
209209
cache: 'npm'
210-
cache-dependency-path: frontend/package-lock.json
210+
cache-dependency-path: package-lock.json
211211

212212
- name: Frontend security audit
213213
working-directory: ./frontend

backend/main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import os
2+
23
from dotenv import load_dotenv
34

45
# Load environment variables FIRST, before any other imports

0 commit comments

Comments
 (0)