Skip to content

Add azure-devops-create-work-item skill #35

Add azure-devops-create-work-item skill

Add azure-devops-create-work-item skill #35

name: Validate Skills
on:
push:
pull_request:
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Check Out Repository
uses: actions/checkout@v4
- name: Set Up pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Set Up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Set Up Node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
cache-dependency-path: pnpm-lock.yaml
- name: Install Node Dependencies
run: pnpm install --frozen-lockfile
- name: Install ripgrep
# Required by skills/ripgrep/scripts/probe_ripgrep.py, which shells
# out to `rg --version` during validation. ubuntu-latest does not
# ship ripgrep preinstalled.
run: sudo apt-get update && sudo apt-get install -y ripgrep
- name: Validate Skills
shell: bash
run: pnpm run validate