Skip to content

Commit d6ce7cf

Browse files
committed
fix: remove validate job referencing missing scripts
1 parent 22639d9 commit d6ce7cf

1 file changed

Lines changed: 1 addition & 27 deletions

File tree

.github/workflows/quality.yaml

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
name: Quality & Validation
22

3-
# Runs comprehensive quality checks on all PRs:
3+
# Runs quality checks on all PRs:
44
# - Prettier (formatting)
55
# - ESLint (linting)
66
# - markdownlint (markdown quality)
7-
# - Schema validation (YAML structure)
8-
# - Agent schema tests (fixture-based validation)
9-
# - Installation component tests (compilation)
10-
# - Bundle validation (web bundle integrity)
117

128
"on":
139
pull_request:
@@ -66,25 +62,3 @@ jobs:
6662
- name: markdownlint
6763
run: npm run lint:md
6864

69-
validate:
70-
runs-on: ubuntu-latest
71-
steps:
72-
- name: Checkout
73-
uses: actions/checkout@v4
74-
75-
- name: Setup Node
76-
uses: actions/setup-node@v4
77-
with:
78-
node-version-file: ".nvmrc"
79-
80-
- name: Install dependencies
81-
run: npm install
82-
83-
- name: Validate YAML schemas
84-
run: npm run validate:schemas
85-
86-
- name: Run agent schema validation tests
87-
run: npm run test:schemas
88-
89-
- name: Test agent compilation components
90-
run: npm run test:install

0 commit comments

Comments
 (0)