client не тронута, а оно гоняет этот pipeline? Что может быть не так? name: Client app
trigger:
branches:
include:
- master
- develop
- releases/*
- feature/*
- bugfix/*
- hotfix/*
paths:
include:
- client/*
pool:
vmImage: 'ubuntu-latest'
jobs:
- job: install_build
displayName: 'Install and build'
steps:
- task: NodeTool@0
inputs:
versionSpec: '12.x'
displayName: 'Install Node.js'
- script: |
npm install
displayName: 'npm install'
workingDirectory: ./client
- script: |
npm run build
displayName: 'npm build'
workingDirectory: ./client
- job: audit
displayName: 'Audit client dependencies'
steps:
- task: NodeTool@0
inputs:
versionSpec: '12.x'
displayName: 'Install Node.js'
- script: |
npm audit
displayName: 'Audit'
workingDirectory: ./client
Точно не меняются? У меня десятки пайпов с таким триггером на папки и все корректно работает
Обсуждают сегодня