17 lines
220 B
YAML
17 lines
220 B
YAML
language: node_js
|
|
|
|
os: linux
|
|
|
|
dist: focal
|
|
|
|
node_js:
|
|
- 12
|
|
|
|
install:
|
|
- yarn
|
|
|
|
script:
|
|
- yarn lerna run prepublish
|
|
- yarn lerna run check-types
|
|
- xvfb-run --server-args="-screen 0 1920x1080x24" yarn lerna run test
|