diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b314688191..43cad88f6a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -53,7 +53,7 @@ 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' }} 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