mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 21:19:13 +00:00

* Update matrix-bot-sdk to 0.6.0 * changelog * More package updates * Don't need to copy bindings anymore * Expliclty require Node 16 * Drop node 14 test * fix rust bindings fetch * Update .github/workflows/main.yml Co-authored-by: Tadeusz Sośnierz <tadzik@tadzik.net> * Update main.yml Co-authored-by: Tadeusz Sośnierz <tadzik@tadzik.net>
14 lines
266 B
Bash
Executable File
14 lines
266 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# exit when any command fails
|
|
set -e
|
|
|
|
echo "Building Rust layer"
|
|
yarn run build:app:rs
|
|
echo "Running rust-typescript definitions fix"
|
|
yarn run build:app:fix-defs
|
|
echo "Building Typescript layer"
|
|
yarn run build:app
|
|
echo "Building web"
|
|
yarn run build:web
|