test
This commit is contained in:
+11
-4
@@ -1,7 +1,13 @@
|
|||||||
# 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:
|
||||||
|
# 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).
|
||||||
|
# 2) Project Settings → Agent pools → PerformicsCICD → Security → grant this pipeline access (or "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)
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
branches:
|
branches:
|
||||||
include:
|
include:
|
||||||
@@ -15,12 +21,13 @@ 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" (agent "myagent" listens via ./run.sh).
|
|
||||||
pool:
|
|
||||||
name: PerformicsCICD
|
|
||||||
steps:
|
steps:
|
||||||
- checkout: self
|
- checkout: self
|
||||||
displayName: Checkout
|
displayName: Checkout
|
||||||
|
|||||||
@@ -134,6 +134,7 @@ function WindowIR(props) {
|
|||||||
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
console.log("window IR page init")
|
||||||
console.log("window IR page init")
|
console.log("window IR page init")
|
||||||
let params = props.route.params ? props.route.params : {};
|
let params = props.route.params ? props.route.params : {};
|
||||||
let storeData1 = params.storeData || {};
|
let storeData1 = params.storeData || {};
|
||||||
|
|||||||
Reference in New Issue
Block a user