From 1c0e52771f20a87b5e467fa3bcc424652e443645 Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Wed, 10 Mar 2021 19:40:53 +0900 Subject: [PATCH] remove ci test all --- .github/workflows/dev-image.yml | 2 -- Makefile | 12 ------------ 2 files changed, 14 deletions(-) diff --git a/.github/workflows/dev-image.yml b/.github/workflows/dev-image.yml index 4f73a1046..8a78cf342 100644 --- a/.github/workflows/dev-image.yml +++ b/.github/workflows/dev-image.yml @@ -34,7 +34,5 @@ jobs: if: github.event_name == 'pull_request' - run: make build - run: docker images - - run: make ci - - run: make all - run: docker-compose push if: github.ref == 'refs/heads/main' && github.event.repository.fork == false diff --git a/Makefile b/Makefile index 049d1951a..b75222d85 100644 --- a/Makefile +++ b/Makefile @@ -8,15 +8,3 @@ build: .PHONY: run run: docker-compose run --rm dev bash - -.PHONY: ci -ci: - docker-compose run --rm -T dev npm ci --ignore-scripts --allow-root - -.PHONY: test -test: - docker-compose run --rm -T dev npm test --allow-root - -.PHONY: all -all: - docker-compose run --rm -T dev npm run all --allow-root