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

@@ -67,16 +67,22 @@ 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: Check Linting
run: npm run lint-ci
run: pnpm run lint-ci
- name: Check Formatting
run: npm run format-ci
run: pnpm run format-ci
server-index:
name: "Check server index.html not changed"
runs-on: ubuntu-22.04