Run build on travis.

This commit is contained in:
Viktor Kovacs 2021-05-12 20:01:25 +02:00
parent 2a0f058ff0
commit fef0d8070c
2 changed files with 1 additions and 8 deletions

View File

@ -7,4 +7,5 @@ install:
- npm install
script:
- npm run build
- npm run test

View File

@ -1,8 +0,0 @@
let cp = require ('child_process');
let pythonExecutable = 'python';
if (process.platform !== 'win32') {
pythonExecutable = 'python3';
}
cp.spawnSync (pythonExecutable, process.argv.slice (2), {
stdio: "inherit"
});