Just install bash during static build

This commit is contained in:
Jake Howard 2022-06-12 19:42:15 +01:00
parent ccd04da71c
commit 478f987421
Signed by: jake
GPG key ID: 57AFB45680EDD477
2 changed files with 3 additions and 1 deletions

View file

@ -9,6 +9,8 @@ static:
key: npm-$CI_COMMIT_REF_SLUG key: npm-$CI_COMMIT_REF_SLUG
paths: paths:
- "$CI_PROJECT_DIR/.npm-cache" - "$CI_PROJECT_DIR/.npm-cache"
before_script:
- apk add --no-cache bash
script: script:
- npm ci --cache .npm-cache --prefer-offline - npm ci --cache .npm-cache --prefer-offline
- npm run build - npm run build

View file

@ -1,4 +1,4 @@
#!/usr/bin/env sh #!/usr/bin/env bash
set -e set -e