Skip to content

Commit

Permalink
Fix ci workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
aelassas committed Dec 6, 2024
1 parent 92cda72 commit b0101d4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: './backend/package-lock.json'
- run: npm install
- run: npm install --force
- run: npm run lint
- run: npm run build
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ jobs:
- name: Build Backend
run: |
cd ./backend
npm install
npm install --force
npm run lint
npm run build
- name: Build Frontend
run: |
cd ./frontend
npm install
npm install --force
npm run lint
npm run build
- name: Build Mobile App
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: './frontend/package-lock.json'
- run: npm install
- run: npm install --force
- run: npm run lint
- run: npm run build

0 comments on commit b0101d4

Please sign in to comment.