Skip to content

feat: add /repo and /pr slash commands for on-demand GitHub queries #11

feat: add /repo and /pr slash commands for on-demand GitHub queries

feat: add /repo and /pr slash commands for on-demand GitHub queries #11

Workflow file for this run

name: CI
on:
push:
branches: ['**']
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test