another attempt at fixing ci

This commit is contained in:
arabcoders 2025-09-11 22:55:41 +03:00
parent c3d360cbb9
commit d21642c1e3
2 changed files with 10 additions and 0 deletions

View file

@ -59,6 +59,8 @@ jobs:
- name: Install frontend dependencies
working-directory: ui
env:
NODE_ENV: development
run: pnpm install --frozen-lockfile
- name: Prepare frontend (nuxt prepare)

View file

@ -73,6 +73,8 @@ jobs:
- name: Install frontend dependencies
working-directory: ui
env:
NODE_ENV: development
run: pnpm install --frozen-lockfile
- name: Prepare frontend (nuxt prepare)
@ -93,6 +95,12 @@ jobs:
working-directory: ui
run: pnpm run test:ci
- name: Remove dev dependencies
working-directory: ui
env:
NODE_ENV: production
run: pnpm install --frozen-lockfile --prod
- name: Build frontend
working-directory: ui
run: pnpm run generate