Skip to content

chore: add ci for tabby-ui #37

chore: add ci for tabby-ui

chore: add ci for tabby-ui #37

name: Test tabby-agent
on:
push:
branches: [ main ]
paths:
- '.github/workflows/tabby-agent-test.yml'
- 'package.json'
- 'yarn.lock'
- 'clients/tabby-agent/**'
pull_request:
branches: [ main ]
paths:
- '.github/workflows/tabby-agent-test.yml'
- 'package.json'
- 'yarn.lock'
- 'clients/tabby-agent/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- 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/tabby-agent
run: yarn install
- name: Lint
working-directory: ./clients/tabby-agent
run: yarn lint:check
- name: Run tests
working-directory: ./clients/tabby-agent
run: yarn test
- name: Test build
working-directory: ./clients/tabby-agent
run: yarn build