I use gitlab CI to deploy vuejs app. For staging, everything works great. I copy paste the same configuration for production and I have :
$ npm run build
> cross-env NODE_ENV=production && vue-cli-service build
sh: 1: cross-env: not found
Here is the .yml file :
build-prod:
stage: build-prod
image: node:latest
variables:
NODE_ENV: production
rules:
# only run on master builds, we'll deal with branch builds next
- if: '$CI_COMMIT_BRANCH == "main"'
when: on_success
- when: never
script:
- node --version
- npm --version
- ls
- cd front
- ls
- npm install -g @vue/cli-service@latest
- rm -rf node_modules
- npm install
- npm install cross-env
- npm run build <----------------------------------- Error here
- ls
I also tried to manually clean cache on gitlab but no effect.
In staging steps are exactly the same and everything works, how can I deal with it ?
Why do you not install
cross-env
globally?I successfully tested this solution with the
node:latest
image, the same you're using in the CI: