mirror of
https://github.com/matrix-org/matrix-spec
synced 2025-12-22 09:18:38 +01:00
10 lines
279 B
Bash
Executable file
10 lines
279 B
Bash
Executable file
#! /bin/bash
|
|
|
|
set -ex
|
|
|
|
(cd event-schemas/ && ./check_examples.py)
|
|
(cd api && ./check_examples.py)
|
|
(cd scripts && ./gendoc.py -v)
|
|
(cd api && npm install && node validator.js -s "client-server/v1" && node validator.js -s "client-server/v2_alpha")
|
|
(cd event-schemas/ && ./check.sh)
|