Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ steps:
- name: run tests
image: mcr.microsoft.com/dotnet/sdk:9.0
commands:
- dotnet test
- apk add --no-cache nodejs npm
- npm install -g yarn
- dotnet test
---
kind: pipeline
type: docker
Expand Down
1 change: 0 additions & 1 deletion src/Api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ WORKDIR /build
COPY ../../. .
RUN apk add --no-cache nodejs npm
RUN npm install -g yarn
RUN yarn --version
RUN dotnet publish -c Release -o /build/publish src/Api/Api.csproj

#########################################################################
Expand Down
1 change: 0 additions & 1 deletion src/Web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ WORKDIR /build
COPY ../../. .
RUN apk add --no-cache nodejs npm
RUN npm install -g yarn
RUN yarn --version
RUN dotnet publish -c Release -o /build/publish src/Web/Web.csproj

#########################################################################
Expand Down
Loading