File tree Expand file tree Collapse file tree
application/CohortManager/src/Web/.github/workflows Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2727 cache-dependency-path : application/CohortManager/src/Web/package-lock.json
2828
2929 - name : Install dependencies
30- run : npm ci
30+ run : npm ci --ignore-scripts
3131
3232 - name : Run Unit tests
3333 run : npm run test:unit
Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ jobs:
2525 version : latest
2626
2727 - name : Install dependencies
28- run : pnpm install
28+ run : pnpm install --ignore-scripts
2929
3030 - name : Install Playwright Browsers
31- run : pnpm exec playwright install --with-deps
31+ run : pnpm exec playwright install --with-deps --ignore-scripts
3232
3333 - name : Run Playwright tests
3434 run : pnpm exec playwright test
Original file line number Diff line number Diff line change 2525 node-version : lts/*
2626
2727 - name : Install dependencies
28- run : pnpm install
28+ run : pnpm install --ignore-scripts
2929
3030 - name : Run unit tests
3131 run : pnpm test
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ git config --global --add safe.directory "$PWD"
3737
3838# --- Install Azure CLI ---
3939echo " ⚙️ Installing Azure CLI..."
40- curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
40+ curl -sL https://aka.ms/InstallAzureCLIDeb --proto " =https " | sudo bash
4141
4242# --- Project Setup ---
4343echo " ⚙️ Running project-specific configuration..."
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ if [ -d "application/CohortManager/src/Web" ]; then
113113 n=0
114114 until [ " $n " -ge 3 ]
115115 do
116- npm ci && break
116+ npm ci --ignore-scripts && break
117117 n=$(( n+ 1 ))
118118 sleep $(( n* 15 ))
119119 done
You can’t perform that action at this time.
0 commit comments