Skip to content

test: specify node version explicitly #54

test: specify node version explicitly

test: specify node version explicitly #54

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
env:
VITE_API_URL: ${{ vars.VITE_API_URL }}
API_SECRET: ${{ secrets.API_SECRET }}
POSTGRES_USER: ${{ secrets.POSTGRES_USER }}
POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }}
POSTGRES_DB: ${{ vars.POSTGRES_DB }}
DATABASE_URL: postgres://${{ secrets.POSTGRES_USER }}:${{ secrets.POSTGRES_PASSWORD }}@postgres-service:5432/${{ vars.POSTGRES_DB }}
CI: 1
jobs:
unit-and-integration-tests:
runs-on: ubuntu-latest
container: node:18
services:
postgres-service:
image: postgres
env:
POSTGRES_USER: ${{ secrets.POSTGRES_USER }}
POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }}
POSTGRES_DB: ${{ vars.POSTGRES_DB }}
options: >-
--health-cmd pg_isready
--health-interval 1s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Dependencies
uses: ./.github/actions/prepare
- name: Prisma Migrate Deploy
run: npx prisma migrate deploy
- name: Run Unit Tests
run: npx vitest --config ./vitest.config.unit.ts
working-directory: backend
- name: Run Integration Tests
run: npx vitest --config ./vitest.config.integration.ts
working-directory: backend
e2e-tests:
runs-on: ubuntu-latest
container: mcr.microsoft.com/playwright:v1.37.0-jammy
strategy:
fail-fast: false
matrix:
shard: [1/4, 2/4, 3/4, 4/4]
services:
postgres-service:
image: postgres
env:
POSTGRES_USER: ${{ secrets.POSTGRES_USER }}
POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }}
POSTGRES_DB: ${{ vars.POSTGRES_DB }}
options: >-
--health-cmd pg_isready
--health-interval 1s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Dependencies
uses: ./.github/actions/prepare
- name: Prisma Migrate Deploy
run: npx prisma migrate deploy
- name: Run E2e Tests
run: npx playwright test --shard=${{ matrix.shard }}
working-directory: e2e
env:
HOME: /root
- uses: actions/upload-artifact@v3
if: always()
with:
name: all-blob-reports
path: e2e/blob-report
retention-days: 3
merge-e2e-reports:
runs-on: ubuntu-latest
if: always()
needs: [e2e-tests]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Dependencies
uses: ./.github/actions/prepare
- name: Download Playwright Blob Reports
uses: actions/download-artifact@v3
with:
name: all-blob-reports
path: e2e/all-blob-reports
- name: Merge Playwright Blob Reports Into HTML Report and GitHub Annotations
run: npx playwright merge-reports --reporter=html,github ./all-blob-reports
working-directory: e2e
- name: Upload Merged Reports
uses: actions/upload-artifact@v3
with:
name: merged-report-attempt-${{ github.run_attempt }}
path: e2e/playwright-report
retention-days: 3
send-notifications:
runs-on: ubuntu-latest
if: always()
needs: [unit-and-integration-tests, e2e-tests]
steps:
- name: Send Slack notification
if: always()
uses: edge/simple-slack-notify@master
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
with:
channel: '#github_actions'
status: ${{ job.status }}
success_text: Build completed successfully
failure_text: 'Build failed'
cancelled_text: 'Build was cancelled'
fields: |
[
{ "title": "Repository", "value": "${env.GITHUB_REPOSITORY}", "short": true },
{ "title": "Branch", "value": "${env.GITHUB_REF}", "short": true },
{ "title": "Action URL", "value": "${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}"}
]