mirror of
https://github.com/MingweiSamuel/Riven.git
synced 2024-12-26 02:46:31 +00:00
12 lines
227 B
Bash
12 lines
227 B
Bash
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
export RGAPI_KEY="$(cat apikey.txt)"
|
|
|
|
cd riven
|
|
|
|
# Ensure builds with tracing.
|
|
wasm-pack build -- --features nightly,tracing
|
|
|
|
# Run tests.
|
|
wasm-pack test --node -- --features nightly,deny-unknown
|