From a5a374a26d61d82e0d14422cb1469331340c45d9 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Wed, 25 Jan 2023 03:33:45 -0800 Subject: [PATCH] Remove deleted make target invocation (#7005) * Remove deleted make target invocation Signed-off-by: Sebastian Malton * Remove last use of make in CI and delete last Makefile Signed-off-by: Sebastian Malton Signed-off-by: Sebastian Malton --- .github/workflows/test.yml | 6 +----- Makefile | 31 ------------------------------- 2 files changed, 1 insertion(+), 36 deletions(-) delete mode 100644 Makefile diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 380fa3916d..43cad88f6a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -53,15 +53,11 @@ jobs: retry_on: error command: yarn install --frozen-lockfile - - run: make test + - run: yarn run test:unit name: Run tests shell: bash if: ${{ matrix.type == 'unit' }} - - run: make ci-validate-dev - if: ${{ contains(github.event.pull_request.labels.*.name, 'dependencies') && matrix.type == 'unit' }} - name: Validate dev mode will work - - name: Install integration test dependencies id: minikube uses: medyagh/setup-minikube@master diff --git a/Makefile b/Makefile deleted file mode 100644 index 5d7c29e942..0000000000 --- a/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -CMD_ARGS = $(filter-out $@,$(MAKECMDGOALS)) - -%: - @: - -ELECTRON_BUILDER_EXTRA_ARGS ?= - -.PHONY: bootstrap -bootstrap: - yarn install - -.PHONY: lint -lint: node_modules - yarn lint - -.PHONY: test -test: node_modules - yarn run test:unit - -.PHONY: integration -integration: build - yarn test:integration - -.PHONY: build -build: - yarn lerna run build:app - -.PHONY: clean -clean: - yarn run clean - yarn run clean:node_modules