Skip to content

Bump sweetalert2 from 11.15.3 to 11.15.10 in /frontend in the npm_and_yarn group #860

Bump sweetalert2 from 11.15.3 to 11.15.10 in /frontend in the npm_and_yarn group

Bump sweetalert2 from 11.15.3 to 11.15.10 in /frontend in the npm_and_yarn group #860

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.13]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- run: poetry install --with dev
- run: poetry run pytest --cov=backend --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}