ci: disable caches to prevent runner timeouts
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 28s
Build & Deploy / 🧪 QA (push) Successful in 1m59s
Build & Deploy / 🏗️ Build (push) Successful in 2m54s
Build & Deploy / 🚀 Deploy (push) Failing after 27s
Build & Deploy / 🧪 Smoke Test (push) Has been skipped
Build & Deploy / ⚡ Lighthouse (push) Has been skipped
Build & Deploy / ♿ WCAG (push) Has been skipped
Build & Deploy / 🛡️ Quality Gates (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Has been cancelled

This commit is contained in:
2026-02-23 13:00:05 +01:00
parent 6a0269facc
commit c414a7614b
2 changed files with 51 additions and 51 deletions

View File

@@ -16,25 +16,25 @@ jobs:
version: 10 version: 10
run_install: false run_install: false
- name: Get pnpm store directory # - name: Get pnpm store directory
id: pnpm-cache # id: pnpm-cache
shell: bash # shell: bash
run: | # run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_OUTPUT # echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_OUTPUT
- name: Setup pnpm cache # - name: Setup pnpm cache
uses: actions/cache@v4 # uses: actions/cache@v4
with: # with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} # path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} # key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: | # restore-keys: |
${{ runner.os }}-pnpm-store- # ${{ runner.os }}-pnpm-store-
- name: Setup Node.js - name: Setup Node.js
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version: 20 node-version: 20
cache: 'pnpm' # cache: 'pnpm' # Temporarily disabled due to runner cache timeouts
- name: 🔐 Configure Private Registry - name: 🔐 Configure Private Registry
run: | run: |
@@ -47,14 +47,14 @@ jobs:
env: env:
NPM_TOKEN: ${{ secrets.REGISTRY_PASS }} NPM_TOKEN: ${{ secrets.REGISTRY_PASS }}
- name: Setup Turbo cache # - name: Setup Turbo cache
uses: actions/cache@v4 # uses: actions/cache@v4
with: # with:
path: .turbo # path: .turbo
key: ${{ runner.os }}-turbo-global-${{ github.sha }} # key: ${{ runner.os }}-turbo-global-${{ github.sha }}
restore-keys: | # restore-keys: |
${{ runner.os }}-turbo-global- # ${{ runner.os }}-turbo-global-
${{ runner.os }}-turbo- # ${{ runner.os }}-turbo-
- name: 🧪 QA Checks - name: 🧪 QA Checks
env: env:

View File

@@ -165,21 +165,21 @@ jobs:
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version: 20 node-version: 20
cache: 'pnpm' # cache: 'pnpm' # Temporär deaktiviert wegen Timeout in Gitea Cache
- name: 🔐 Registry Auth - name: 🔐 Registry Auth
run: | run: |
echo "@mintel:registry=https://${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}" > .npmrc echo "@mintel:registry=https://${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}" > .npmrc
echo "//${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}/:_authToken=${{ secrets.REGISTRY_PASS }}" >> .npmrc echo "//${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}/:_authToken=${{ secrets.REGISTRY_PASS }}" >> .npmrc
- name: Install dependencies - name: Install dependencies
run: pnpm install --frozen-lockfile run: pnpm install --frozen-lockfile
- name: Setup Turbo cache # - name: Setup Turbo cache
uses: actions/cache@v4 # uses: actions/cache@v4
with: # with:
path: .turbo # path: .turbo
key: ${{ runner.os }}-turbo-global-${{ github.sha }} # key: ${{ runner.os }}-turbo-global-${{ github.sha }}
restore-keys: | # restore-keys: |
${{ runner.os }}-turbo-global- # ${{ runner.os }}-turbo-global-
${{ runner.os }}-turbo- # ${{ runner.os }}-turbo-
- name: 🔒 Security Audit - name: 🔒 Security Audit
run: pnpm audit --audit-level high run: pnpm audit --audit-level high
@@ -441,18 +441,18 @@ jobs:
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version: 20 node-version: 20
cache: 'pnpm' # cache: 'pnpm' # Temporär deaktiviert wegen Timeout in Gitea Cache
- name: 🔐 Registry Auth - name: 🔐 Registry Auth
run: | run: |
echo "@mintel:registry=https://${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}" > .npmrc echo "@mintel:registry=https://${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}" > .npmrc
echo "//${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}/:_authToken=${{ secrets.REGISTRY_PASS }}" >> .npmrc echo "//${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}/:_authToken=${{ secrets.REGISTRY_PASS }}" >> .npmrc
- name: Install dependencies - name: Install dependencies
run: pnpm install --frozen-lockfile run: pnpm install --frozen-lockfile
- name: Setup APT Cache # - name: Setup APT Cache
uses: actions/cache@v4 # uses: actions/cache@v4
with: # with:
path: /var/cache/apt/archives # path: /var/cache/apt/archives
key: apt-cache-${{ runner.os }}-${{ hashFiles('package.json') }} # key: apt-cache-${{ runner.os }}-${{ hashFiles('package.json') }}
- name: 🔍 Install Chromium (Native & ARM64) - name: 🔍 Install Chromium (Native & ARM64)
run: | run: |
rm -f /etc/apt/apt.conf.d/docker-clean rm -f /etc/apt/apt.conf.d/docker-clean
@@ -513,29 +513,29 @@ jobs:
uses: pnpm/action-setup@v3 uses: pnpm/action-setup@v3
with: with:
version: 10 version: 10
- name: Setup Puppeteer cache # - name: Setup Puppeteer cache
uses: actions/cache@v4 # uses: actions/cache@v4
with: # with:
path: ~/.cache/puppeteer # path: ~/.cache/puppeteer
key: ${{ runner.os }}-puppeteer-${{ hashFiles('**/pnpm-lock.yaml') }} # key: ${{ runner.os }}-puppeteer-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: | # restore-keys: |
${{ runner.os }}-puppeteer- # ${{ runner.os }}-puppeteer-
- name: Setup Node.js - name: Setup Node.js
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version: 20 node-version: 20
cache: 'pnpm' # cache: 'pnpm' # Temporär deaktiviert wegen Timeout in Gitea Cache
- name: 🔐 Registry Auth - name: 🔐 Registry Auth
run: | run: |
echo "@mintel:registry=https://${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}" > .npmrc echo "@mintel:registry=https://${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}" > .npmrc
echo "//${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}/:_authToken=${{ secrets.REGISTRY_PASS }}" >> .npmrc echo "//${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}/:_authToken=${{ secrets.REGISTRY_PASS }}" >> .npmrc
- name: Install dependencies - name: Install dependencies
run: pnpm install --frozen-lockfile run: pnpm install --frozen-lockfile
- name: Setup APT Cache # - name: Setup APT Cache
uses: actions/cache@v4 # uses: actions/cache@v4
with: # with:
path: /var/cache/apt/archives # path: /var/cache/apt/archives
key: apt-cache-${{ runner.os }}-${{ hashFiles('package.json') }} # key: apt-cache-${{ runner.os }}-${{ hashFiles('package.json') }}
- name: 🔍 Install Chromium (Native & ARM64) - name: 🔍 Install Chromium (Native & ARM64)
run: | run: |
rm -f /etc/apt/apt.conf.d/docker-clean rm -f /etc/apt/apt.conf.d/docker-clean
@@ -600,7 +600,7 @@ jobs:
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version: 20 node-version: 20
cache: 'pnpm' # cache: 'pnpm' # Temporär deaktiviert wegen Timeout in Gitea Cache
- name: 🔐 Registry Auth - name: 🔐 Registry Auth
run: | run: |
echo "@mintel:registry=https://${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}" > .npmrc echo "@mintel:registry=https://${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}" > .npmrc
@@ -638,7 +638,7 @@ jobs:
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version: 20 node-version: 20
cache: 'pnpm' # cache: 'pnpm' # Temporär deaktiviert wegen Timeout in Gitea Cache
- name: 🔔 Gotify - name: 🔔 Gotify
run: | run: |
STATUS="${{ needs.deploy.result }}" STATUS="${{ needs.deploy.result }}"