From 681dcab3fd25a0f24dc66bb2767c0e37934aad5c Mon Sep 17 00:00:00 2001 From: Shohei Ueda <30958501+peaceiris@users.noreply.github.com> Date: Tue, 28 Jul 2020 22:00:59 +0900 Subject: [PATCH] ci: enhance version log (#429) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 653da92..da705e2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,8 +37,8 @@ ENV GITHUB_REPOSITORY_OWNER="peaceiris" ENV GITHUB_ACTIONS="true" ENV CI="true" -RUN node -v && \ - npm -v && \ +RUN echo "node version: $(node -v)" && \ + echo "npm version: $(npm -v)" && \ git --version && \ git config --global init.defaultBranch main && \ git config --global init.defaultBranch