Quasar CI/CD commands
-
So I’m trying to create CI/CD pipeline for my quasar app (I use Azure pipelines for that)
So first thing I do is I run
npm install -g @quasar/cli
thennpm install
And so far it works
But then as I understand I should have quasar set globally on that virtual machine but it does not work:
On the next step I run
quasar build
And I get error:
quasar: command not found
Should I run that command in a different way? Not sure how though -
Make sure you are in the project folder, when you run the build command.
Scott