mirror of
https://github.com/MingweiSamuel/Riven.git
synced 2025-01-24 09:47:26 -08:00
12 lines
244 B
Bash
12 lines
244 B
Bash
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
export RGAPI_KEY="$(cat apikey.txt)"
|
|
|
|
cd riven
|
|
|
|
# Ensure builds with tracing, metrics.
|
|
wasm-pack build -- --features nightly,tracing,metrics
|
|
|
|
# Run tests.
|
|
wasm-pack test --node -- --features nightly,deny-unknown
|