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

Remove deleted make target invocation (#7005)

* Remove deleted make target invocation

Signed-off-by: Sebastian Malton <sebastian@malton.name>

* Remove last use of make in CI and delete last Makefile

Signed-off-by: Sebastian Malton <sebastian@malton.name>

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2023-01-25 03:33:45 -08:00 committed by GitHub
parent 2657df2293
commit a5a374a26d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 36 deletions

View File

@ -53,15 +53,11 @@ 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' }}
- 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 - name: Install integration test dependencies
id: minikube id: minikube
uses: medyagh/setup-minikube@master uses: medyagh/setup-minikube@master

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