Merge pull request #25 from KucharczykL/claude/great-faraday-fn6s06

Provision pnpm via Corepack in CI to honor packageManager pin
This commit is contained in:
2026-06-14 18:22:22 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
node-version: "22" node-version: "22"
- name: Install pnpm and JS dependencies - name: Install pnpm and JS dependencies
run: npm install -g pnpm && pnpm install --frozen-lockfile --ignore-scripts run: corepack enable && pnpm install --frozen-lockfile --ignore-scripts
- name: Build TypeScript - name: Build TypeScript
run: make ts run: make ts
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
node-version: "22" node-version: "22"
- name: Install pnpm and JS dependencies - name: Install pnpm and JS dependencies
run: npm install -g pnpm && pnpm install --frozen-lockfile --ignore-scripts run: corepack enable && pnpm install --frozen-lockfile --ignore-scripts
- name: Build TypeScript - name: Build TypeScript
run: make ts run: make ts