fix(webadmin): count every Stripe product in subscription metrics #4759
Workflow file for this run
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: Desktop Checks | |
| on: | |
| push: | |
| branches: main | |
| pull_request: | |
| branches: main | |
| concurrency: | |
| group: desktop-checks-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| changes: | |
| name: Detect Changes | |
| runs-on: ubuntu-latest | |
| outputs: | |
| diff_base: ${{ steps.changes.outputs.diff_base }} | |
| has_desktop_agent_runtime: ${{ steps.changes.outputs.has_desktop_agent_runtime }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Detect changed paths | |
| id: changes | |
| uses: ./.github/actions/detect-changes | |
| agent-runtime: | |
| name: Agent Runtime | |
| runs-on: ubuntu-latest | |
| needs: changes | |
| if: needs.changes.outputs.has_desktop_agent_runtime == 'true' | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node.js for desktop agent runtime | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| cache-dependency-path: | | |
| desktop/macos/agent/package-lock.json | |
| desktop/macos/pi-mono-extension/package-lock.json | |
| - name: Check desktop agent runtime | |
| run: desktop/macos/scripts/test-tool-surfaces.sh |