build: migrate from npm to pnpm #4209
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Code PushUp | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| env: | |
| NX_NON_NATIVE_HASHER: true | |
| NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} | |
| permissions: | |
| pull-requests: write | |
| jobs: | |
| standalone: | |
| runs-on: ubuntu-latest | |
| name: Standalone mode | |
| # ignore PRs from forks, handled by code-pushup-fork.yml | |
| if: ${{ !github.event.pull_request.head.repo.fork }} | |
| env: | |
| CP_API_KEY: ${{ secrets.CP_API_KEY }} | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set base and head for Nx affected commands | |
| uses: nrwl/nx-set-shas@v5 | |
| - name: Install dependencies | |
| uses: ./.github/actions/install | |
| - name: Run Code PushUp action | |
| uses: ./.github/actions/code-pushup | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| mode: standalone | |
| monorepo: | |
| runs-on: ubuntu-latest | |
| name: Monorepo mode | |
| # ignore PRs from forks, handled by code-pushup-fork.yml | |
| if: ${{ !github.event.pull_request.head.repo.fork }} | |
| env: | |
| CP_API_KEY: ${{ secrets.CP_API_KEY }} | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set base and head for Nx affected commands | |
| uses: nrwl/nx-set-shas@v5 | |
| - name: Install dependencies | |
| uses: ./.github/actions/install | |
| - name: Run Code PushUp action | |
| uses: ./.github/actions/code-pushup | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| mode: monorepo |