Switch to pnpm (and update some dependencies) (#2032)

This commit is contained in:
Gold856
2025-08-04 16:59:45 -04:00
committed by GitHub
parent ffd4d1f80e
commit ad64bfeaa9
14 changed files with 3786 additions and 8458 deletions

View File

@@ -30,14 +30,20 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
cache-dependency-path: photon-client/pnpm-lock.yaml
- name: Install Dependencies
run: npm ci
run: pnpm i --frozen-lockfile
- name: Build Production Client
run: npm run build-demo
run: pnpm run build-demo
- uses: actions/upload-artifact@v4
with:
name: built-demo