-
Notifications
You must be signed in to change notification settings - Fork 55
/
justfile
47 lines (39 loc) · 1.57 KB
/
justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
prepare: build-release build-nodejs build-web test
build:
cargo build --all
build-release:
cargo build --release --all
start-web: build-web
npm run start --prefix ./web
build-lib:
cargo build
build-cli:
cargo build --package postman2openapi-cli
build-web:
wasm-pack build --release --out-dir ./web/wasm --target bundler
npm install --prefix ./web
npm run build --prefix ./web
build-nodejs:
wasm-pack build --release --out-dir ./nodejs --target nodejs
build-devcontainer-image:
NEEDS_BUILDER=$(docker buildx ls | grep -q postman2openapi; echo $?); \
if [[ "$NEEDS_BUILDER" = "1" ]]; then docker buildx create --name postman2openapi --bootstrap --use; \
else docker buildx use postman2openapi; fi && \
docker buildx build --platform linux/amd64,linux/arm64 --push -f ./.devcontainer/Dockerfile -t ghcr.io/kevinswiber/postman2openapi-devcontainer:latest .
push-devcontainer-image:
docker push ghcr.io/kevinswiber/postman2openapi-devcontainer:latest
fmt-check:
cargo fmt --check --all
clippy:
cargo clippy -- -D warnings
test: build fmt-check clippy test-lib test-integration test-wasm-node test-wasm-chrome test-wasm-firefox
test-lib:
cargo test --lib
test-integration:
cargo test --test integration_tests
test-wasm-firefox:
(which geckodriver && wasm-pack test --headless --firefox --test wasm_browser) || echo "Install geckodriver to run Firefox tests."
test-wasm-chrome:
(which chromedriver && wasm-pack test --headless --chrome --test wasm_browser) || echo "Install chromedriver to run Chrome tests."
test-wasm-node:
wasm-pack test --node --test wasm_node