Add email client with local email server #1262
Workflow file for this run
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 for pr | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
workflow_dispatch: | |
jobs: | |
tag-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Tag PR | |
uses: release-drafter/release-drafter@v5 | |
with: | |
name: PR ${{ github.ref }} | |
prerelease: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
build-backend: | |
name: Build Backend | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: docker/setup-qemu-action@v3 | |
- uses: docker/setup-buildx-action@v3 | |
- uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./backend | |
push: true | |
tags: ghcr.io/dnum-mi/basegun/basegun-backend:${{ github.head_ref }} | |
build-frontend: | |
name: Build Frontend | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: docker/setup-qemu-action@v3 | |
- uses: docker/setup-buildx-action@v3 | |
- uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./frontend | |
push: true | |
tags: ghcr.io/dnum-mi/basegun/basegun-frontend:${{ github.head_ref }} | |
test-backend: | |
name: Test Backend | |
needs: build-backend | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/dnum-mi/basegun/basegun-backend:${{ github.head_ref }} | |
env: | |
AWS_REGION: gra | |
AWS_DEFAULT_REGION: gra | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
S3_URL_ENDPOINT: https://s3.gra.io.cloud.ovh.net/ | |
S3_BUCKET_NAME: basegun-s3 | |
EMAIL_HOST: mailpit | |
EMAIL_PORT: 1025 | |
JWKS_URL: https://token.actions.githubusercontent.com/.well-known/jwks | |
OPENIDCONNECT_URL: https://token.actions.githubusercontent.com/.well-known/openid-configuration | |
KID: cc413527-173f-5a05-976e-9c52b1d7b431 | |
steps: | |
- run: cd /app && pytest | |
services: | |
mailpit: | |
image: axllent/mailpit | |
ports: | |
- 1025:1025 | |
env: | |
MP_SMTP_AUTH_ACCEPT_ANY: 1 | |
MP_SMTP_AUTH_ALLOW_INSECURE: 1 | |
test-frontend-format: | |
name: Test Frontend Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Prettier check | |
working-directory: frontend | |
run: | | |
npm ci | |
npm run format-check | |
test-e2e: | |
name: Run E2E tests | |
needs: [build-backend, build-frontend] | |
uses: ./.github/workflows/test-e2e.yml |