Unit Tests #136
Workflow file for this run
This file contains 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: Tests | |
run-name: Unit Tests | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- '*' | |
- 'package*.json' | |
- 'src/**' | |
- 'tests/**' | |
- '!docs/**' | |
- '!imgs/**' | |
- '!.github/**' | |
- '.github/workflows/**' | |
- '!.gitignore' | |
- '!LICENSE' | |
- '!README' | |
jobs: | |
Discord-Node-Test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 2 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up Node Environment lts/jod | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/jod | |
cache: "npm" | |
- name: Install Project Dependencies | |
run: | | |
npm install | |
- name: Create Environment Variables | |
run: | | |
touch .env | |
echo CLIENT_TOKEN = ${{ secrets.BOT_TOKEN }} >> .env | |
echo OLLAMA_IP = ${{ secrets.OLLAMA_IP }} >> .env | |
echo OLLAMA_PORT = ${{ secrets.OLLAMA_PORT }} >> .env | |
echo REDIS_IP = ${{ secrets.REDIS_IP }} >> .env | |
echo REDIS_PORT = ${{ secrets.REDIS_PORT }} >> .env | |
- name: Test Application | |
run: | | |
npm run test:run |