Compare commits

..

2 Commits

Author SHA1 Message Date
Rainer Killinger
fec025893b refactor: update to Angular 19.2 2026-03-13 14:51:55 +01:00
Rainer Killinger
3a7a9fac2f refactor: update to typescript 5.5.4 2026-03-13 14:49:33 +01:00
4 changed files with 15 additions and 24 deletions

View File

@@ -1,5 +0,0 @@
---
"@openstapps/proxy": patch
---
Bumping proxy version to rebuild image

View File

@@ -1,5 +0,0 @@
---
"@openstapps/app-cypress": patch
---
removed edge browser

View File

@@ -120,6 +120,6 @@ audit:
script:
- pnpm audit --prod --audit-level critical
rules:
- if: $CI_COMMIT_BRANCH == 'main'
allow_failure: false
- !reference [.limit_pipelines, rules]
# - if: $CI_COMMIT_BRANCH == 'main'
# allow_failure: false

View File

@@ -66,22 +66,22 @@ RUN export FIREFOX_VERSION=$(curl -fsSL https://product-details.mozilla.org/1.0/
rm /tmp/firefox.tar.xz && \
ln -fs /opt/firefox/firefox /usr/bin/firefox
# RUN echo "Downloading Latest Edge version..."
RUN echo "Downloading Latest Edge version..."
## Setup Edge
# RUN curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
# RUN install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/
# RUN sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge-dev.list'
# RUN rm microsoft.gpg
RUN curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
RUN install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/
RUN sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge-dev.list'
RUN rm microsoft.gpg
# ## Install Edge
# RUN apt-get update && \
# apt-get install -y microsoft-edge-dev \
# && rm -rf /var/lib/apt/lists/* \
# && apt-get clean
## Install Edge
RUN apt-get update && \
apt-get install -y microsoft-edge-dev \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get clean
# # Add a link to the browser that allows Cypress to find it
# RUN ln -s /usr/bin/microsoft-edge /usr/bin/edge
# Add a link to the browser that allows Cypress to find it
RUN ln -s /usr/bin/microsoft-edge /usr/bin/edge
### PNPM
RUN corepack enable && corepack prepare pnpm@latest-10 --activate
@@ -93,6 +93,7 @@ RUN echo " node version: $(node -v) \n" \
"debian version: $(cat /etc/debian_version) \n" \
"Chrome version: $(google-chrome --version) \n" \
"Firefox version: $(firefox --version) \n" \
"Edge version: $(edge --version) \n" \
"git version: $(git --version) \n" \
"whoami: $(whoami) \n"