This commit is contained in:
Yan Xu 2024-11-19 14:01:06 +08:00 коммит произвёл GitHub
Родитель 35a3cf31ab
Коммит 30b1b012f7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 0 добавлений и 27 удалений

Просмотреть файл

@ -1,27 +0,0 @@
# Node.js
# Build a general Node.js project with npm.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
pr:
- main
pool:
name: pool-ubuntu-2004
steps:
- task: NodeTool@0
inputs:
versionSpec: '14.x'
displayName: 'Install Node.js 14'
- script: |
pushd vscode-extension
npm install
npm run lint
npm run compile
if [ $? -ne 0 ]; then
exit 1
fi
popd
displayName: 'Lint and build'