fix: restore B49/B50/B51 step headers as deferred no-ops #164
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: Repo Standards Enforcement | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - "release/**" | |
| push: | |
| branches: | |
| - "plan/**" | |
| - "feat/**" | |
| - "fix/**" | |
| - "release/**" | |
| - "hotfix/**" | |
| jobs: | |
| standards: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Install dependencies | |
| working-directory: FailSafe/extension | |
| run: npm ci | |
| - name: Branch policy | |
| shell: pwsh | |
| run: | | |
| pwsh -File tools/reliability/validate-branch-policy.ps1 | |
| - name: Lint | |
| working-directory: FailSafe/extension | |
| run: npm run lint | |
| - name: Compile | |
| working-directory: FailSafe/extension | |
| run: npm run compile | |
| - name: Package and validate VSIX contents | |
| working-directory: FailSafe/extension | |
| run: | | |
| npx @vscode/vsce package | |
| npm run validate:vsix | |
| - name: Repository validation | |
| shell: pwsh | |
| run: | | |
| pwsh -File scripts/validate.ps1 -SkipContainerValidation | |