This commit is contained in:
NishantRajputRN
2026-04-16 17:19:53 +05:30
parent 290094e797
commit c00ffbbb76
2 changed files with 9 additions and 7 deletions
+1
View File
@@ -1 +1,2 @@
console.log("trest")
console.log("trest") console.log("trest")
+8 -7
View File
@@ -1,9 +1,11 @@
# Azure Pipelines — React Native (JS CI) # Azure Pipelines — React Native (JS CI)
# https://learn.microsoft.com/azure/devops/pipelines/yaml-schema # https://learn.microsoft.com/azure/devops/pipelines/yaml-schema
# #
# If jobs never leave "Queued" or use Microsoft-hosted agents instead of your machine: # Same self-hosted pool as other repos — if this pipeline stays Queued or ignores your agent:
# 1) Pipelines → select this pipeline → Edit → three dots → Triggers → YAML path must be this file (or move/copy to azure-pipelines.yml and point the pipeline there). # 1) Pipelines → this pipeline → Edit → → Triggers → YAML file path must be THIS file
# 2) Project Settings → Agent pools → PerformicsCICD → Security → grant this pipeline access (or "Grant access permission to all pipelines"). # (repo root: /PerformicsDevOps.yml). Default lookup is only /azure-pipelines.yml.
# 2) Project Settings → Agent pools → PerformicsCICD → Security → grant this pipeline access
# (or enable "Grant access permission to all pipelines").
# #
# Run on every push directly to main (and when merging into main via PR). # Run on every push directly to main (and when merging into main via PR).
name: PerformicsDevOps-$(Date:yyyyMMdd)$(Rev:.r) name: PerformicsDevOps-$(Date:yyyyMMdd)$(Rev:.r)
@@ -21,13 +23,12 @@ pr:
variables: variables:
NODE_VERSION: '22.x' NODE_VERSION: '22.x'
# Pool at pipeline scope so every job uses the self-hosted pool (matches Project Settings → Agent pools → PerformicsCICD).
pool:
name: PerformicsCICD
jobs: jobs:
- job: BuildAndTest - job: BuildAndTest
displayName: Performics DevOps Pipeline displayName: Performics DevOps Pipeline
# Self-hosted pool "PerformicsCICD" (same pattern as working Deeplink/azure-pipelines.yml).
pool:
name: PerformicsCICD
steps: steps:
- checkout: self - checkout: self
displayName: Checkout displayName: Checkout