Skip to content

Bump @babel/preset-env from 7.22.9 to 7.24.0 in /frontend #212

Bump @babel/preset-env from 7.22.9 to 7.24.0 in /frontend

Bump @babel/preset-env from 7.22.9 to 7.24.0 in /frontend #212

Workflow file for this run

name: Django CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python3 -m pip install --upgrade pip
cd backend/api/lexical
pip3 install -r requirements.txt
- name: Run Django unit tests
run: |
cd backend/api/lexical
python3 manage.py test