Home > Back-end >  Why do I get error: run npm ci & run npm build failed when pushing changes to React app that is depl
Why do I get error: run npm ci & run npm build failed when pushing changes to React app that is depl

Time:07-26

Here's a link to the repo for better readability: https://github.com/shaynemcp/reactCounterDemo/runs/7507090095?check_suite_focus=true

fail run npm ci & npm run build

CodePudding user response:

Your issue is already in the logs. Your build treats warnings as errors and your eslint warns of the list of unused variables.

Delete the variables in the mentioned files or make them used and you should be fine.

Edit: looking at your index.js you seem to do imports but never use the imports. So you should remove unused imports.

CodePudding user response:

As Laluka said, As it states in logs: Treating warnings as errors because process.env.CI = true. You could change environmental variable 'CI' to false, or you could fix whatever the warnings are.

  • Related