Home > front end >  What does the :ci in npm run build:ci do?
What does the :ci in npm run build:ci do?

Time:12-26

In our github workflows yml file, I see run: npm run build:ci replacing run: npm run build. What does the :ci part do differently?

CodePudding user response:

This is actually something we defined in our package.json. Disabling linking for CI purposes.

enter image description here

  • Related