Merge branch 'dont-install-dev-deps' into 'master'

Don't install dev dependencies when building

See merge request openlp/web-remote!103
This commit is contained in:
Raoul Snyman 2024-04-26 15:54:19 +00:00
commit fcc1f543d0
1 changed files with 8 additions and 2 deletions

View File

@ -33,7 +33,10 @@ test:
build-branch:
stage: build
script:
- yarn install
# Temporarily install npm manually until we get it added to the runner image
- apk add npm
- yarn install --production
- npm install @angular/cli
- yarn build --no-progress --configuration production --aot
- export APP_VERSION=`git describe --dirty --tags --long --match '*[0-9]*'`
- 'echo "window.appVersion = \"$APP_VERSION\";" > dist/web-remote/assets/version.js'
@ -46,7 +49,10 @@ build-branch:
build-tag:
stage: build
script:
- yarn install
# Temporarily install npm manually until we get it added to the runner image
- apk add npm
- yarn install --production
- npm install @angular/cli
- yarn build --no-progress --configuration production --aot
- 'echo "window.appVersion = \"$CI_COMMIT_TAG\";" > dist/web-remote/assets/version.js'
artifacts: