Skip to content

fix: delete unused code #8

fix: delete unused code

fix: delete unused code #8

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)"