New Jumpstart: Fabric Tenant Settings Monitoring (#195) #245
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: Gated Check In - Full | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| gci-linux: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - name: "🔄 Checkout" | |
| uses: actions/checkout@v4 | |
| - name: "⚙️ Bootstrap CI Environment" | |
| run: contrib/bootstrap-ci.sh | |
| - name: "🧹 Clean Projects" | |
| run: npx nx run-many -t clean --parallel=3 --output-style=stream | |
| - name: "📦 Build Projects" | |
| run: npx nx run-many -t build --parallel=3 --output-style=stream | |
| - name: "🧪 Test Projects" | |
| run: npx nx run-many -t test --verbose --output-style=stream | |
| - name: "🪥 Lint Projects" | |
| run: npx nx run-many -t lint --verbose --output-style=stream | |
| - name: "📁 Verify No Untracked Files" | |
| run: npm run fail-on-untracked-files |