mirror of
https://github.com/status-im/libp2p-test-plans.git
synced 2025-01-21 04:10:19 +00:00
9a4c969523
Adds perf tests for js-libp2p 0.46.x and 1.0 (via the `next` tag). --------- Co-authored-by: achingbrain <achingbrain@users.noreply.github.com>
13 lines
221 B
Makefile
13 lines
221 B
Makefile
DOCKER_IMAGE := node:20-alpine
|
|
DOCKER_RUN := docker run --rm -v "$(shell pwd)":/usr/src/myapp -w /usr/src/myapp $(DOCKER_IMAGE)
|
|
|
|
all: perf
|
|
|
|
perf:
|
|
$(DOCKER_RUN) npm ci
|
|
|
|
clean:
|
|
rm -rf node_modules
|
|
|
|
.PHONY: all clean perf
|