I created a new app using the react template. In my github actions, When I first did the npm install, it went well Later I tried, the npm run build . It failed with npm ERR! Missing script: "build" But the build script is present in my package.json file
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},