Update CI config to install Node dependencies

This commit is contained in:
Sascha Ißbrücker
2021-05-14 02:38:44 +02:00
parent f58434077b
commit f293fa15bc

View File

@@ -12,7 +12,13 @@ jobs:
uses: actions/setup-python@v1 uses: actions/setup-python@v1
with: with:
python-version: 3.7 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 run: pip install -r requirements.txt
- name: Install Node dependencies
run: npm install
- name: Run tests - name: Run tests
run: python manage.py test run: python manage.py test