π Add Interactive CLI Docs with DeepGuide #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: DeepGuide | |
on: | |
push: | |
branches: [ main, master, develop ] | |
pull_request: | |
branches: [ main, master ] | |
jobs: | |
validate: | |
name: Validate Demos | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install asciinema | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y asciinema | |
- name: Validate demos | |
run: npx @deepguide-ai/dg validate --non-interactive |