chore(ava): delete useless code and move prompt to same folder #15
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: 🧪 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 |