Skip to content

added launch target for vuetify tests #1514

added launch target for vuetify tests

added launch target for vuetify tests #1514

Workflow file for this run

name: Unit Tests
on: [push]
jobs:
backend-tests:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run backend tests
working-directory: ${{github.workspace}}/application
run: |
# Create a dummy DISRAPTOR_API_KEY
sudo bash -c 'mkdir -p "/etc/discourse/" && echo "I am so secret" > "/etc/discourse/client-api-key"'
pip3 install -e .[dev,test]
make setup
make tests
frontend-tests:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install dependencies
working-directory: ${{github.workspace}}/frontend
run: yarn --frozen-lockfile
- name: Run frontend tests
working-directory: ${{github.workspace}}/frontend
run: yarn test