try disabling cache
Some checks failed
Backend Actions / check (push) Successful in 14s
Backend Actions / build (push) Successful in 23s
Backend Actions / test (push) Successful in 31s
Frontend Actions / test (push) Has been cancelled
Frontend Actions / check (push) Has been cancelled
Frontend Actions / build (push) Has been cancelled

This commit is contained in:
2025-07-25 22:55:14 +01:00
parent 44fe28f996
commit d441a147c5

View File

@ -10,12 +10,12 @@ jobs:
working-directory: ./ui working-directory: ./ui
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Load Cache # - name: Load Cache
uses: actions/cache@v4 # uses: actions/cache@v4
with: # with:
path: | # path: |
ui/node_modules # ui/node_modules
key: ${{ runner.os }}-node-check-${{ hashFiles('ui/package-lock.json') }} # key: ${{ runner.os }}-node-check-${{ hashFiles('ui/package-lock.json') }}
- uses: actions/setup-node@v4 - uses: actions/setup-node@v4
with: with:
version: '24' version: '24'
@ -35,12 +35,12 @@ jobs:
working-directory: ./ui working-directory: ./ui
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Load Cache # - name: Load Cache
uses: actions/cache@v4 # uses: actions/cache@v4
with: # with:
path: | # path: |
ui/node_modules # ui/node_modules
key: ${{ runner.os }}-node-build-${{ hashFiles('ui/package-lock.json') }} # key: ${{ runner.os }}-node-build-${{ hashFiles('ui/package-lock.json') }}
- uses: actions/setup-node@v4 - uses: actions/setup-node@v4
with: with:
version: '24' version: '24'
@ -57,12 +57,12 @@ jobs:
working-directory: ./ui working-directory: ./ui
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Load Cache # - name: Load Cache
uses: actions/cache@v4 # uses: actions/cache@v4
with: # with:
path: | # path: |
ui/node_modules # ui/node_modules
key: ${{ runner.os }}-node-test-${{ hashFiles('ui/package-lock.json') }} # key: ${{ runner.os }}-node-test-${{ hashFiles('ui/package-lock.json') }}
- uses: actions/setup-node@v4 - uses: actions/setup-node@v4
with: with:
version: '24' version: '24'