From 062876ca0b677c112eb9a2aba979aa0f34e2422b Mon Sep 17 00:00:00 2001 From: Shohei Ueda <30958501+peaceiris@users.noreply.github.com> Date: Sat, 21 Nov 2020 10:21:39 +0900 Subject: [PATCH 1/5] deps: bump node from 12.19.0 to 12.19.1 --- .nvmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.nvmrc b/.nvmrc index 260a0e20..e9f788b1 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -12.19.0 +12.19.1 From ab92dbb8cad77a6986a54cad4454c6c610ecba64 Mon Sep 17 00:00:00 2001 From: Shohei Ueda <30958501+peaceiris@users.noreply.github.com> Date: Sat, 21 Nov 2020 10:31:50 +0900 Subject: [PATCH 2/5] chore: set ACTIONS_ALLOW_UNSECURE_COMMANDS true --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index d83d7e19..6d90c776 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,5 +25,6 @@ RUN wget -q "https://github.com/git/git/archive/v${GIT_VERSION}.tar.gz" && \ WORKDIR /repo ENV RUNNER_TEMP="/tmp" +ENV ACTIONS_ALLOW_UNSECURE_COMMANDS=true CMD [ "bash" ] From da07fc528b1c7a6d9b7a6ae3b45937bd6987faba Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Sat, 21 Nov 2020 10:48:52 +0900 Subject: [PATCH 3/5] Revert "chore: set ACTIONS_ALLOW_UNSECURE_COMMANDS true" This reverts commit ab92dbb8cad77a6986a54cad4454c6c610ecba64. --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6d90c776..d83d7e19 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,6 +25,5 @@ RUN wget -q "https://github.com/git/git/archive/v${GIT_VERSION}.tar.gz" && \ WORKDIR /repo ENV RUNNER_TEMP="/tmp" -ENV ACTIONS_ALLOW_UNSECURE_COMMANDS=true CMD [ "bash" ] From 21488cde7d564b516f87965148664a8c748477e6 Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Sat, 21 Nov 2020 10:50:37 +0900 Subject: [PATCH 4/5] ci: comment out npm test --- .github/workflows/dev-image.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dev-image.yml b/.github/workflows/dev-image.yml index 99a9cd85..b88e1c10 100644 --- a/.github/workflows/dev-image.yml +++ b/.github/workflows/dev-image.yml @@ -34,4 +34,6 @@ jobs: - uses: actions/checkout@v2 - run: make build - run: make cirun cmd="npm ci" - - run: make ciall + # - run: make ciall + - run: make cirun cmd="npm format:check" + - run: make cirun cmd="npm lint" From 53d051b3e803032f965563b6249a03d526ec9b03 Mon Sep 17 00:00:00 2001 From: Shohei Ueda <30958501+peaceiris@users.noreply.github.com> Date: Sat, 21 Nov 2020 11:17:44 +0900 Subject: [PATCH 5/5] Update dev-image.yml --- .github/workflows/dev-image.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev-image.yml b/.github/workflows/dev-image.yml index b88e1c10..c551571a 100644 --- a/.github/workflows/dev-image.yml +++ b/.github/workflows/dev-image.yml @@ -35,5 +35,5 @@ jobs: - run: make build - run: make cirun cmd="npm ci" # - run: make ciall - - run: make cirun cmd="npm format:check" - - run: make cirun cmd="npm lint" + - run: make cirun cmd="npm run format:check" + - run: make cirun cmd="npm run lint"