Skip to content

refactor(ava): move advise into a floder #21

refactor(ava): move advise into a floder

refactor(ava): move advise into a floder #21

Workflow file for this run

name: 🧪 Auto Test
on:
push:
branches:
- '**' # all branches
jobs:
test:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v2
with:
node-version: '18.x'
- name: Install dependencies
run: npm install --no-package-lock
- name: Run tests
env:
TBOX_LLM_APP_ID: ${{ secrets.TBOX_LLM_APP_ID }}
TBOX_LLM_AUTH: ${{ secrets.TBOX_LLM_AUTH }}
run: npm run test