Skip to content

chore(ember): bump ember-simple-auth-oidc #1501

chore(ember): bump ember-simple-auth-oidc

chore(ember): bump ember-simple-auth-oidc #1501

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