Skip to content

fix: add oh-my-opencode-slim schema support (closes #2) #6

fix: add oh-my-opencode-slim schema support (closes #2)

fix: add oh-my-opencode-slim schema support (closes #2) #6

Workflow file for this run

name: PR Check
on:
pull_request:
branches: [ main, master ]
types: [ opened, synchronize, reopened ]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build project
run: npm run build
- name: Run tests
run: npm test