Merged PR 216: test
test
This commit is contained in:
+11
-4
@@ -1,7 +1,13 @@
|
||||
# Azure Pipelines — React Native (JS CI)
|
||||
# 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).
|
||||
name: PerformicsDevOps-$(Date:yyyyMMdd)$(Rev:.r)
|
||||
|
||||
trigger:
|
||||
branches:
|
||||
include:
|
||||
@@ -15,12 +21,13 @@ pr:
|
||||
variables:
|
||||
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:
|
||||
- job: BuildAndTest
|
||||
displayName: Performics DevOps Pipeline
|
||||
# Self-hosted pool "PerformicsCICD" (agent "myagent" listens via ./run.sh).
|
||||
pool:
|
||||
name: PerformicsCICD
|
||||
steps:
|
||||
- checkout: self
|
||||
displayName: Checkout
|
||||
|
||||
@@ -134,6 +134,7 @@ function WindowIR(props) {
|
||||
|
||||
|
||||
useEffect(() => {
|
||||
console.log("window IR page init")
|
||||
console.log("window IR page init")
|
||||
let params = props.route.params ? props.route.params : {};
|
||||
let storeData1 = params.storeData || {};
|
||||
|
||||
Reference in New Issue
Block a user