Skip to content

Commit

Permalink
Switch to yarn in delivery.yaml and enable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vadeg committed Oct 26, 2021
1 parent 7e43128 commit 46cea10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion delivery.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pipeline:
- desc: Build Web UI
cmd: |
cd $PWD/web-ui
npm install -q ; npm test ; npm run build
yarn install -q ; yarn test ; yarn build
cache:
paths: [ ~/.npm ]

Expand Down
2 changes: 1 addition & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
FROM registry.opensource.zalan.do/library/openjdk-11-jdk-slim:latest as builder
COPY . /src
WORKDIR /src
RUN ./gradlew build -x test
RUN ./gradlew build

FROM registry.opensource.zalan.do/library/openjdk-11-jdk-slim:latest

Expand Down

0 comments on commit 46cea10

Please sign in to comment.