Skip to content

Commit

Permalink
Update CI workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
aelassas committed Apr 24, 2024
1 parent 68f3566 commit ff467ff
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 7 deletions.
1 change: 0 additions & 1 deletion .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,4 @@ jobs:
cache: 'npm'
cache-dependency-path: './backend/package-lock.json'
- run: npm install
- run: npm run lint
- run: npm run build
3 changes: 0 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,14 @@ jobs:
run: |
cd ./backend
npm install
npm run lint
npm run build
- name: Build Frontend
run: |
cd ./frontend
npm install
npm run lint
npm run build
- name: Build Mobile App
run: |
cd ./mobile
npm install
npm run lint
npm run ts:check
1 change: 0 additions & 1 deletion .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,4 @@ jobs:
cache: 'npm'
cache-dependency-path: './frontend/package-lock.json'
- run: npm install
- run: npm run lint
- run: npm run build
1 change: 0 additions & 1 deletion .github/workflows/mobile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,4 @@ jobs:
cache: 'npm'
cache-dependency-path: './mobile/package-lock.json'
- run: npm install
- run: npm run lint
- run: npm run ts:check
2 changes: 1 addition & 1 deletion mobile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"build:ios": "cross-env EAS_NO_VCS=1 tsc --build --verbose && eas build --profile production --platform ios",
"build:ios:local": "cross-env EAS_NO_VCS=1 tsc --build --verbose && eas build --profile production --platform ios --local",
"build:ios:preview": "cross-env EAS_NO_VCS=1 tsc --build --verbose && eas build --profile preview --platform android",
"ts:check": "tsc -b",
"ts:check": "tsc --build",
"lint": "eslint --ext .ts,.tsx .",
"fix": "eslint --fix .",
"ncu": "ncu -u -x eslint && npm i && expo install --fix && npm prune"
Expand Down

0 comments on commit ff467ff

Please sign in to comment.