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