ci: drop --ignore-optional flag from yarn

Fixes image compression step:
```
Starting 'images'...
gulp-imagemin: Couldn't load default plugin "optipng"
'images' errored after 23 ms
  TypeError in plugin "gulp-imagemin"
Message:
    fn is not a function
Details:
    fileName: /home/jenkins/workspace/website/dev.vac.dev/assets/img/arrow-peach.svg
    domainEmitter: [object Object]
    domainThrown: false
```

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2022-01-11 21:33:55 +01:00 committed by Jinho Jang
parent cd851ae586
commit 3829bf9524
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -32,7 +32,7 @@ pipeline {
stage('Install Deps') {
steps {
sh 'yarn install --ignore-optional'
sh 'yarn install'
sh 'bundle install'
}
}