rondo-framework/.drone.yml
Jerko Steiner 1d8c23e25a
Some checks failed
continuous-integration/drone/push Build is failing
Fix jest test in CI
Jest runs out of memory when run in Docker, possibly because of a memory
leak in ts-jest.

The tests will now run after the build, on the built *.js files. As a
consequence, the jest tests will run faster because ts-jest will no
longer be invoked in ci.

Check the package.json test:ci script for more info.

https://github.com/facebook/jest/issues/7874
https://github.com/facebook/jest/issues/9081
2020-01-10 10:35:59 +01:00

20 lines
310 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: build
image: node:12
commands:
- npm install
- npm run lint
- npm run bootstrap
- npm run test:ci
- npm run esm
---
kind: signature
hmac: 2a4dd894429afc6c3908a5d53cab57cac9a3918260a01e3f845db9aba53d6316
...