Fix pnpm CI install and build stability

This commit is contained in:
2026-05-17 23:05:17 +02:00
parent 7562c88fd3
commit df462c07e5
5 changed files with 46 additions and 27 deletions

View File

@@ -14,16 +14,17 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v6
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '24'
- name: Install pnpm
run: npm install -g pnpm
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
run: pnpm install --frozen-lockfile
- name: Build Next.js app
run: pnpm run build