Skip to content

Commit

Permalink
update bun tests make to install dependencies before running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
negrel committed Jan 24, 2024
1 parent b079a08 commit a414097
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/bun/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.PHONY: all
all: all/default all/events all/trusted-proxy all/untrusted-proxy
all: setup .WAIT all/default all/events all/trusted-proxy all/untrusted-proxy
@true

all/%: start/% .WAIT test/% .WAIT clean/%
Expand All @@ -21,3 +21,9 @@ lint:
.PHONY: lint/fix
lint/fix:
bunx ts-standard --fix

setup: node_modules

node_modules:
docker run --rm -it -v $$PWD:/app -w /app docker.io/oven/bun bun install

0 comments on commit a414097

Please sign in to comment.