Skip to content

chore(deps-dev): bump the ember group across 1 directory with 12 updates #1440

chore(deps-dev): bump the ember group across 1 directory with 12 updates

chore(deps-dev): bump the ember group across 1 directory with 12 updates #1440

Workflow file for this run

---
name: Backend
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: "Lint"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set UID
run: echo "UID=$(id --user)" > .env
- name: Lint the backend code
run: make api-lint
test:
name: "Test"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set UID
run: echo "UID=$(id --user)" > .env
- name: Build the containers
run: docker compose up -d --build db api
- name: Check for missing migrations
run: docker compose exec -T api ./manage.py makemigrations --check --dry-run --no-input
- name: Run backend tests
run: make api-test