From a2bea87066ce5373805bfc96de8a94ac46737b71 Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Sat, 22 Apr 2023 23:18:40 -0500 Subject: [PATCH] Don't bundle in JS PR (#2792) * Don't bundle in JS PR * Update azure-pipelines.yml comment --- .ado/azure-pipelines.yml | 2 +- lage.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ado/azure-pipelines.yml b/.ado/azure-pipelines.yml index 877d22591d..5a45c6134d 100644 --- a/.ado/azure-pipelines.yml +++ b/.ado/azure-pipelines.yml @@ -5,7 +5,7 @@ variables: CI: true jobs: - # Dedicated task to build and bundle JS code, including jest tests, snapshot testing, and linting, because these things can be super + # Dedicated task to build JS code, including jest tests, snapshot testing, and linting, because these things can be super # time consuming they don't need to run on every CI pass, instead do a dedicated JS loop to make the platform specific tests start quicker - job: JSPR displayName: JS PR diff --git a/lage.config.js b/lage.config.js index 96ec84e439..df11d3de15 100644 --- a/lage.config.js +++ b/lage.config.js @@ -3,7 +3,7 @@ module.exports = { pipeline: { ['build-tools']: ['^build-tools'], build: ['build-tools', '^build'], - buildci: ['build', 'test', 'depcheck', 'bundle'], + buildci: ['build', 'test', 'depcheck'], bundle: ['build-tools', 'build'], clean: [], depcheck: ['build-tools'],