Skip to content

Commit

Permalink
work for the #8245
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-kurmanov committed May 31, 2024
1 parent 40d1607 commit 1a4ad04
Showing 1 changed file with 56 additions and 56 deletions.
112 changes: 56 additions & 56 deletions devops-pull-requests-parallel-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -303,66 +303,66 @@ jobs:
npm run testcafe:ci:vue3
displayName: "run functional tests"
- job: JqueryUIPreact
steps:
- checkout: self
persistCredentials: true
clean: true

- task: NodeTool@0
inputs:
versionSpec: "14.x"
displayName: "Install Node.js"

- task: CopyFiles@2
inputs:
SourceFolder: "$(Build.SourcesDirectory)/"
Contents: "package.json"
TargetFolder: "$(Build.SourcesDirectory)/Temp/"
OverWrite: true
displayName: "Copy package.json for cache key"

- task: Cache@2
inputs:
key: 'npm-cache-library | $(Build.SourcesDirectory)/Temp/package.json'
path: $(Build.SourcesDirectory)/node_modules
cacheHitVar: NPM_CACHE_RESTORED
displayName: Cache NPMs

- task: Npm@1
displayName: 'NPM install'
inputs:
command: install
verbose: false
condition: ne(variables.NPM_CACHE_RESTORED, 'true')

- script: |
npm run build_core
npm run build_i18n
npm run build-plugins
displayName: "Build Core"
- script: |
npm run build_jquery-ui_prod
displayName: "Build jquery-ui_prod"
- script: |
npm run test:postcss
displayName: "check postcss compatibility"
- script: |
npm run testsingle
displayName: "run unit tests"
# - job: JqueryUIPreact
# steps:
# - checkout: self
# persistCredentials: true
# clean: true

# - task: NodeTool@0
# inputs:
# versionSpec: "14.x"
# displayName: "Install Node.js"

# - task: CopyFiles@2
# inputs:
# SourceFolder: "$(Build.SourcesDirectory)/"
# Contents: "package.json"
# TargetFolder: "$(Build.SourcesDirectory)/Temp/"
# OverWrite: true
# displayName: "Copy package.json for cache key"

# - task: Cache@2
# inputs:
# key: 'npm-cache-library | $(Build.SourcesDirectory)/Temp/package.json'
# path: $(Build.SourcesDirectory)/node_modules
# cacheHitVar: NPM_CACHE_RESTORED
# displayName: Cache NPMs

# - task: Npm@1
# displayName: 'NPM install'
# inputs:
# command: install
# verbose: false
# condition: ne(variables.NPM_CACHE_RESTORED, 'true')

# - script: |
# npm run build_core
# npm run build_i18n
# npm run build-plugins
# displayName: "Build Core"

# - script: |
# npm run build_jquery-ui_prod
# displayName: "Build jquery-ui_prod"

# - script: |
# npm run test:postcss
# displayName: "check postcss compatibility"

# - script: |
# npm run testsingle
# displayName: "run unit tests"

- script: |
npm run lint
displayName: "eslint check"
# - script: |
# npm run lint
# displayName: "eslint check"

# - script: |
# npm run test:jquery-ui:single
# displayName: "run markup tests"

- script: |
npm run testcafe:jquery-ui
displayName: "run functional tests"
# - script: |
# npm run testcafe:jquery-ui
# displayName: "run functional tests"

0 comments on commit 1a4ad04

Please sign in to comment.