Skip to content

change tests

change tests #86

Workflow file for this run

name: Playwright Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Cache Docker layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Build and start services
run: docker-compose up -d --build
- name: Wait for container to become available
run: npx wait-on http://localhost:8080
timeout-minutes: 2
- name: Print home page
run: curl http://localhost:8080
- name: Install npm dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v2
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
- name: Stop services
run: docker-compose down