Skip to content

Align cards to the center of the deck #34

Align cards to the center of the deck

Align cards to the center of the deck #34

Workflow file for this run

name: Playwright Tests
on:
push: []
jobs:
test:
services:
baloot:
image: ghcr.io/papepathe/baloot:test-grpc
ports:
- 7777:7777
timeout-minutes: 60
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.39.0-jammy
defaults:
run:
working-directory: baloot
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 3