aaron
057377207a
Some checks failed
release / begin-notification (push) Has been cancelled
release / build-linux (push) Has been cancelled
release / build-msi-installer (push) Has been cancelled
release / build-mac-installer (push) Has been cancelled
release / upload-to-s3 (push) Has been cancelled
release / github-release (push) Has been cancelled
release / end-notification (push) Has been cancelled
26 lines
790 B
JSON
26 lines
790 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build sources",
|
|
"type": "npm",
|
|
"script": "build",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "prepare-e2e",
|
|
"type": "shell",
|
|
"command": "npm run build; npm run build-robotjs; npm run test:e2e:build",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "prepare-e2e-performance",
|
|
"type": "shell",
|
|
"command": "cross-env NODE_ENV=test PERFORMANCE=true npm run build; npm run build-robotjs; npm run test:e2e:build-performance",
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
}
|