fix: delete unused code #8
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: Test VS Code Workflows | |
| on: | |
| push: | |
| branches: | |
| - feat/add-vscode-extension-ci | |
| paths: | |
| - '.github/workflows/**' | |
| - '.github/actions/**' | |
| workflow_dispatch: | |
| jobs: | |
| verify-workflows: | |
| name: Verify Workflows | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Verify workflow files exist | |
| run: | | |
| echo "Checking for workflow files..." | |
| if [ ! -d .github/workflows ]; then | |
| echo "Error: .github/workflows directory not found" | |
| exit 1 | |
| fi | |
| WORKFLOW_COUNT=$(find .github/workflows -name "*.yml" -type f | wc -l) | |
| echo "Found $WORKFLOW_COUNT workflow files" | |
| if [ "$WORKFLOW_COUNT" -eq 0 ]; then | |
| echo "Error: No workflow files found" | |
| exit 1 | |
| fi | |
| echo "✓ Workflows package verified (pure YAML, no TypeScript)" |