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:
parent
2657df2293
commit
a5a374a26d
6
.github/workflows/test.yml
vendored
6
.github/workflows/test.yml
vendored
@ -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
|
||||
|
||||
31
Makefile
31
Makefile
@ -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
|
||||
Loading…
Reference in New Issue
Block a user