[FA-11] Disable Node caching all together and let backend rebuild if needed
Some checks failed
CI / build-backend (pull_request) Failing after 52s
CI / build-frontend (pull_request) Failing after 4m52s

This commit is contained in:
gamer147
2025-11-26 00:49:27 -05:00
parent ba99642e97
commit e9eaf1569b
2 changed files with 2 additions and 1 deletions

View File

@@ -50,7 +50,7 @@ jobs:
- name: Export schema - name: Export schema
run: | run: |
dotnet run -c Release --no-build --no-launch-profile \ dotnet run -c Release --no-launch-profile \
--project ${{ matrix.service.project }}/${{ matrix.service.project }}.csproj \ --project ${{ matrix.service.project }}/${{ matrix.service.project }}.csproj \
-- schema export --output ${{ matrix.service.project }}/schema.graphql -- schema export --output ${{ matrix.service.project }}/schema.graphql

View File

@@ -52,6 +52,7 @@ jobs:
node-version: '20' node-version: '20'
cache: 'npm' cache: 'npm'
cache-dependency-path: fictionarchive-web/package-lock.json cache-dependency-path: fictionarchive-web/package-lock.json
package-manager-cache: false
- name: Install dependencies - name: Install dependencies
run: npm ci run: npm ci