Bump the all-dependencies group across 1 directory with 8 updates #486
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
| # This workflow will attempt to install, build, and start the project for every | |
| # pull request to the main branch. | |
| name: Pull request workflow | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| pull_request_build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| services: | |
| postgres: | |
| image: postgres:latest | |
| env: | |
| POSTGRES_USER: postgres | |
| POSTGRES_PASSWORD: postgres | |
| POSTGRES_DB: testdb | |
| ports: | |
| - 5433:5432 | |
| options: >- | |
| --health-cmd pg_isready | |
| --health-interval 10s | |
| --health-timeout 5s | |
| --health-retries 5 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 20 | |
| # Test backend | |
| - name: Install backend dependencies | |
| run: npm install | |
| working-directory: ./backend | |
| - name: Set up database migration and seeding | |
| run: npm run setup:ci | |
| working-directory: ./backend | |
| env: | |
| DATABASE_URL: postgres://postgres:postgres@localhost:5433/testdb | |
| - name: Test backend | |
| run: npm run test | |
| working-directory: ./backend | |
| env: | |
| DATABASE_URL: postgres://postgres:postgres@localhost:5433/testdb | |
| # Test frontend | |
| - name: Install frontend dependencies | |
| run: npm install | |
| working-directory: ./frontend | |
| - name: Create .env.production | |
| run: echo "${{ secrets.FRONTEND_ENV }}" >> .env.production | |
| working-directory: ./frontend | |
| - name: Build frontend | |
| run: npm run build | |
| working-directory: ./frontend |