mattermost-desktop/.vscode/tasks.json
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
first commit bois
2024-10-03 06:35:14 -07:00

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": []
}
]
}