mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 06:04:15 +00:00
47 lines
1.2 KiB
YAML
47 lines
1.2 KiB
YAML
name: linkding CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
unit_tests:
|
|
name: Unit Tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.10"
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
- name: Install Node dependencies
|
|
run: npm install
|
|
- name: Setup Python environment
|
|
run: pip install -r requirements.txt
|
|
- name: Run tests
|
|
run: python manage.py test bookmarks.tests
|
|
e2e_tests:
|
|
name: E2E Tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.10"
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
- name: Install Node dependencies
|
|
run: npm install
|
|
- name: Setup Python environment
|
|
run: |
|
|
pip install -r requirements.txt
|
|
playwright install chromium
|
|
python manage.py compilescss
|
|
python manage.py collectstatic --ignore=*.scss
|
|
- name: Run tests
|
|
run: python manage.py test bookmarks.e2e
|