diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..66618b3 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +language: node_js + +cache: false + +install: + - yarn install --frozen-lockfile --network-timeout 1000000 + +script: + set -e; + yarn run lint; + yarn run check-types; + yarn run build;