Allow use of standard docker TZ
env var
#911
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: linkding CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
unit_tests: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Install Node dependencies | |
run: npm ci | |
- name: Setup Python environment | |
run: | | |
pip install -r requirements.txt -r requirements.dev.txt | |
mkdir data | |
- name: Run tests | |
run: python manage.py test bookmarks.tests | |
e2e_tests: | |
name: E2E Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Install Node dependencies | |
run: npm ci | |
- name: Setup Python environment | |
run: | | |
pip install -r requirements.txt -r requirements.dev.txt | |
playwright install chromium | |
mkdir data | |
- name: Run build | |
run: | | |
npm run build | |
python manage.py compilescss | |
python manage.py collectstatic --ignore=*.scss | |
- name: Run tests | |
run: python manage.py test bookmarks.e2e --pattern="e2e_test_*.py" |