Skip to content

Commit

Permalink
Remove unused CI env var
Browse files Browse the repository at this point in the history
  • Loading branch information
santiagolizardo committed Nov 17, 2024
1 parent 5f2f687 commit d98a156
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,17 +60,17 @@ tests:
docker run -u $(CONTAINER_UID_GID) --rm -it \
-v $(PWD):/home/reconmapper \
-v $(PWD)/$(ENV_FILE_NAME):/home/reconmapper/packages/app/public/environment.js \
--entrypoint yarn -e CI=true $(DOCKER_DEV_TAG) workspace @reconmap/app test
--entrypoint yarn $(DOCKER_DEV_TAG) workspace @reconmap/app test
docker run -u $(CONTAINER_UID_GID) --rm -it \
-v $(PWD):/home/reconmapper \
-v $(PWD)/$(ENV_FILE_NAME):/home/reconmapper/public/environment.js \
--entrypoint npx -e CI=true $(DOCKER_DEV_TAG) npx stylelint "**/*.css"
--entrypoint npx $(DOCKER_DEV_TAG) npx stylelint "**/*.css"

.PHONY: tests-ci
tests-ci:
docker run -u $(CONTAINER_UID_GID) --rm -t \
-v $(PWD):/home/reconmapper \
-v $(PWD)/$(ENV_FILE_NAME):/home/reconmapper/public/environment.js \
-v $(PWD)/$(ENV_FILE_NAME):/home/reconmapper/packages/app/public/environment.js \
--entrypoint yarn -e CI=true $(DOCKER_DEV_TAG) test:ci

.PHONY: clean
Expand Down

0 comments on commit d98a156

Please sign in to comment.