diff --git a/.github/workflows/test-pnpm-v11.yml b/.github/workflows/test-pnpm-v11.yml new file mode 100644 index 000000000..8381cc713 --- /dev/null +++ b/.github/workflows/test-pnpm-v11.yml @@ -0,0 +1,38 @@ +name: "[TEST] pnpm v11 upgrade - STRR apps" +on: + push: + branches: ["test/pnpm-v11-upgrade"] + workflow_dispatch: + +jobs: + test-pnpm-v11: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + app: + - strr-examiner-web + - strr-host-pm-web + - strr-strata-web + - strr-platform-web + - strr-base-web + defaults: + run: + working-directory: ${{ matrix.app }} + steps: + - uses: actions/checkout@v6 + - name: Setup pnpm v11 + uses: pnpm/action-setup@v6 + with: + version: latest-11 + - uses: actions/setup-node@v6 + with: + node-version: 24 + cache: pnpm + cache-dependency-path: ${{ matrix.app }}/pnpm-lock.yaml + - name: Install + run: pnpm install --no-frozen-lockfile --ignore-scripts + - name: Build + run: pnpm build + - name: Verify pnpm version + run: pnpm --version