fix: Remove autofocus on dialog text input, reduce category image siz… #171
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build containers | |
run: docker compose build --build-arg MIX_ENV=test | |
- name: Start containers | |
run: docker compose up -d db cache | |
- name: Run tests | |
run: docker compose run web bash -c 'cd server && mix test' |