[Admin Governance] Rebuild orphaned editor groups during repair #40893
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: Typecheck (extension) | |
| on: | |
| push: | |
| paths: | |
| - package-lock.json | |
| - sdks/js/** | |
| - sparkle/** | |
| - front/** | |
| - extension/** | |
| - .github/workflows/build-extension.yml | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| tsgo: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Setup Node Dependencies | |
| uses: ./.github/actions/setup-node-deps | |
| with: | |
| build-sdks: "true" | |
| build-sparkle: "true" | |
| - name: Typecheck | |
| working-directory: extension | |
| run: npm run tsgo |