/
githubmirror
/
yarn
Обзор
Документация
Войти
/
githubmirror
/
yarn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
scripts/azure-run-tests.yml
30 строк
640 B
Maël Nison
Set up CI with Azure Pipelines (#6495)
15 ноя 2018, 01:10
Не верифицирован
15 ноя 2018, 01:10
7f41910
Код
Авторство
О чём код?
steps: - task: NodeTool@0 inputs: versionSpec: $(node_version) displayName: 'Install Node.js' - bash: | yarn yarn run build ls -lhR bin ls -lhR lib displayName: 'Install and build' - script: | cd packages/pkg-tests yarn displayName: 'Install the acceptance tests' - script: | cd packages/pkg-tests yarn jest yarn --reporters=default --reporters=jest-junit displayName: 'Run the acceptance tests' - task: PublishTestResults@2 inputs: testResultsFiles: '**/junit.xml' testRunTitle: $(os_name) Node $(node_version) displayName: 'Publishing the test results' condition: always()