build(deps-dev): bump @types/react-dom from 18.3.7 to 19.2.5 in /frontend #720
Workflow file for this run
This file contains hidden or 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: Integration Tests | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| branches: [main, master] | |
| jobs: | |
| integration-test: | |
| runs-on: ubuntu-latest | |
| services: | |
| postgres: | |
| image: postgres:16-alpine | |
| env: | |
| POSTGRES_DB: future_test | |
| POSTGRES_USER: future_admin | |
| POSTGRES_PASSWORD: test_password | |
| ports: | |
| - 5432:5432 | |
| options: >- | |
| --health-cmd pg_isready | |
| --health-interval 10s | |
| --health-timeout 5s | |
| --health-retries 5 | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Use Node.js | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.3.0 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Run Prisma Migrations | |
| run: npx prisma migrate deploy | |
| working-directory: ./backend | |
| env: | |
| DATABASE_URL: postgresql://future_admin:test_password@localhost:5432/future_test | |
| - name: Run Integration Tests | |
| run: npm run test:integration:all | |
| working-directory: ./backend | |
| env: | |
| DATABASE_URL: postgresql://future_admin:test_password@localhost:5432/future_test | |
| NODE_ENV: test | |
| JWT_SECRET: test-secret | |
| STELLAR_NETWORK: testnet | |
| HORIZON_URL: https://horizon-testnet.stellar.org | |
| - name: Upload Test Reports | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: integration-test-reports | |
| path: backend/test-reports/ | |
| retention-days: 30 |