Skip to content

feat: add api to serve files under repositories #103

feat: add api to serve files under repositories

feat: add api to serve files under repositories #103

Workflow file for this run

name: Test VSCode Extension
on:
push:
branches: [ main ]
paths:
- '.github/workflows/vscode-test.yml'
- 'package.json'
- 'yarn.lock'
- 'clients/tabby-agent/**'
- 'clients/vscode/**'
pull_request:
branches: [ main ]
paths:
- '.github/workflows/vscode-test.yml'
- 'package.json'
- 'yarn.lock'
- 'clients/tabby-agent/**'
- 'clients/vscode/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: true
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: yarn
cache-dependency-path: 'yarn.lock'
- name: Install dependencies
working-directory: ./clients/vscode
run: yarn install
- name: Lint
working-directory: ./clients/vscode
run: yarn lint:check
- name: Test build
working-directory: ./clients/vscode
run: yarn build