dev #22

Merged
JoeKung merged 3 commits from dev into main 2026-03-05 09:31:09 +01:00
4 changed files with 79 additions and 25 deletions

View File

@@ -41,25 +41,38 @@ jobs:
cache: "npm"
cache-dependency-path: "frontend/package-lock.json"
- name: Install Chromium
- name: Resolve Chrome binary
shell: bash
run: |
set -euo pipefail
if command -v chromium >/dev/null 2>&1; then
CHROME_PATH="$(command -v chromium)"
elif command -v chromium-browser >/dev/null 2>&1; then
CHROME_PATH="$(command -v chromium-browser)"
elif command -v google-chrome >/dev/null 2>&1; then
CHROME_PATH="$(command -v google-chrome)"
else
apt-get update
apt-get install -y --no-install-recommends chromium
CHROME_PATH="$(command -v chromium)"
fi
echo "CHROME_BIN=$CHROME_PATH" >> "$GITHUB_ENV"
echo "Using CHROME_BIN=$CHROME_PATH"
- name: Install frontend dependencies
shell: bash
run: |
cd frontend
npm ci --no-audit --no-fund
npm ci --no-audit --no-fund --prefer-offline
- name: Run frontend tests (headless)
shell: bash
env:
CHROME_BIN: /usr/bin/chromium
CI: "true"
run: |
cd frontend
echo "Karma CHROME_BIN=$CHROME_BIN"
npm run test -- --watch=false --browsers=ChromeHeadlessNoSandbox
build-and-push:

View File

@@ -150,23 +150,36 @@ jobs:
cache: "npm"
cache-dependency-path: "frontend/package-lock.json"
- name: Install Chromium
- name: Resolve Chrome binary
shell: bash
run: |
set -euo pipefail
if command -v chromium >/dev/null 2>&1; then
CHROME_PATH="$(command -v chromium)"
elif command -v chromium-browser >/dev/null 2>&1; then
CHROME_PATH="$(command -v chromium-browser)"
elif command -v google-chrome >/dev/null 2>&1; then
CHROME_PATH="$(command -v google-chrome)"
else
apt-get update
apt-get install -y --no-install-recommends chromium
CHROME_PATH="$(command -v chromium)"
fi
echo "CHROME_BIN=$CHROME_PATH" >> "$GITHUB_ENV"
echo "Using CHROME_BIN=$CHROME_PATH"
- name: Install frontend dependencies
shell: bash
run: |
cd frontend
npm ci --no-audit --no-fund
npm ci --no-audit --no-fund --prefer-offline
- name: Run frontend tests (headless)
shell: bash
env:
CHROME_BIN: /usr/bin/chromium
CI: "true"
run: |
cd frontend
echo "Karma CHROME_BIN=$CHROME_BIN"
npm run test -- --watch=false --browsers=ChromeHeadlessNoSandbox

View File

@@ -96,10 +96,13 @@
</div>
<div class="actions">
<div class="actions-left">
<app-button variant="outline" (click)="consult.emit()">
{{ "QUOTE.CONSULT" | translate }}
</app-button>
</div>
<div class="actions-right">
@if (!hasQuantityOverLimit()) {
<app-button (click)="proceed.emit()">
{{ "QUOTE.PROCEED_ORDER" | translate }}
@@ -110,4 +113,5 @@
}}</small>
}
</div>
</div>
</app-card>

View File

@@ -126,15 +126,39 @@
.actions {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
gap: var(--space-3);
margin-top: var(--space-2);
@media (max-width: 640px) {
flex-direction: column;
align-items: stretch;
}
}
.actions-left,
.actions-right {
display: flex;
align-items: center;
}
.actions-right {
justify-content: flex-end;
@media (max-width: 640px) {
justify-content: flex-start;
}
}
.limit-note {
font-size: 0.8rem;
color: var(--color-text-muted);
text-align: center;
margin-top: calc(var(--space-2) * -1);
text-align: right;
@media (max-width: 640px) {
text-align: left;
}
}
.notes-section {