Skip to content

Added download chat history button for AI Assistant #399

Added download chat history button for AI Assistant

Added download chat history button for AI Assistant #399

Workflow file for this run

name: Linter
on: [pull_request]
jobs:
Linter:
name: Linting and Code Formating Check CI
runs-on: ubuntu-latest
strategy:
matrix: { directory : [backend, frontend] }
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Download dependencies
working-directory: ${{ matrix.directory }}
run: npm cache clean --force && npm install
env:
CI: false
- name: Run Linter
working-directory: ${{ matrix.directory }}
run: npm run style:linter --verbose
env:
CI: false
- name: Run Code Formatter
working-directory: ${{ matrix.directory }}
run: npm run style
env:
CI: false