1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Remove last use of make in CI and delete last Makefile

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2023-01-24 16:03:08 -05:00
parent e8b8753997
commit 01be08b35b
2 changed files with 1 additions and 32 deletions

View File

@ -53,7 +53,7 @@ jobs:
retry_on: error retry_on: error
command: yarn install --frozen-lockfile command: yarn install --frozen-lockfile
- run: make test - run: yarn run test:unit
name: Run tests name: Run tests
shell: bash shell: bash
if: ${{ matrix.type == 'unit' }} if: ${{ matrix.type == 'unit' }}

View File

@ -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