Skip to content

Commit

Permalink
👷 Fix: NPM install problem
Browse files Browse the repository at this point in the history
- remove package-lock.json
- remove react-icons
  • Loading branch information
nmdra committed Jul 11, 2024
1 parent edc2257 commit 264e39c
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 13,088 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Eslint-Backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with:
node-version: '22'
- name: Install Node Dependencies
run: npm ci
run: npm install
- name: Save Code Linting Report JSON
run: npm run lint -- --output-file eslint_report.json --format json .
continue-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Eslint-Frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
node-version: '22'
- name: Install Node Dependencies
run: npm ci
run: npm install
- name: Save Code Linting Report JSON
run: npm run lint -- --output-file eslint_report.json --format json .
continue-on-error: true
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/Jest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ jobs:
with:
node-version: '22'
- name: Install Node Dependencies
run: npm ci
run: npm install
- name: Run Jest Testing
run: npm run test -- --ci --json --coverage --testLocationInResults --outputFile=jestReport.json
continue-on-error: true
- name: Annotate Code Linting Results
uses: ArtiomTr/jest-coverage-report-action@v2
2 changes: 1 addition & 1 deletion .github/workflows/lint-test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint Checks
name: Checks(Eslint+Jest)

on:
workflow_dispatch:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.env
node_modules
.vercel
package-lock.json
# Logs
logs
*.log
Expand Down
Loading

0 comments on commit 264e39c

Please sign in to comment.