mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 06:04:15 +00:00
Update CI config to install Node dependencies
This commit is contained in:
parent
f58434077b
commit
f293fa15bc
1 changed files with 7 additions and 1 deletions
8
.github/workflows/main.yaml
vendored
8
.github/workflows/main.yaml
vendored
|
@ -12,7 +12,13 @@ jobs:
|
|||
uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: 3.7
|
||||
- name: Install dependencies
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: 14
|
||||
- name: Install Python dependencies
|
||||
run: pip install -r requirements.txt
|
||||
- name: Install Node dependencies
|
||||
run: npm install
|
||||
- name: Run tests
|
||||
run: python manage.py test
|
||||
|
|
Loading…
Reference in a new issue