* Add type checking to ci * Update @types/node to version 12 We are using node 12 on ci * Add check-types to package.json
16 lines
170 B
YAML
16 lines
170 B
YAML
language: node_js
|
|
|
|
os: linux
|
|
|
|
dist: focal
|
|
|
|
node_js:
|
|
- 12
|
|
|
|
install:
|
|
- yarn
|
|
|
|
script:
|
|
- yarn check-types
|
|
- xvfb-run --server-args="-screen 0 1920x1080x24" yarn test
|