-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
40 lines (37 loc) · 1.03 KB
/
action.yml
File metadata and controls
40 lines (37 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: "Agent SkillForge"
description: "Lint agent skills and plugins in CI."
author: "f0d010c"
branding:
icon: "shield"
color: "blue"
inputs:
path:
description: "Skill, plugin, or repository path to lint."
required: false
default: "."
format:
description: "Output format: text, json, or sarif."
required: false
default: "text"
profile:
description: "Lint profile: source or marketplace."
required: false
default: "source"
runs:
using: "composite"
steps:
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: "24"
- name: Install SkillForge dependencies
shell: bash
run: npm ci
working-directory: ${{ github.action_path }}
- name: Build SkillForge
shell: bash
run: npm run build
working-directory: ${{ github.action_path }}
- name: Run SkillForge
shell: bash
run: node "${{ github.action_path }}/dist/cli.js" lint "${{ inputs.path }}" --format "${{ inputs.format }}" --profile "${{ inputs.profile }}"