decktape/.github/workflows/ci.yml
2023-01-20 16:40:12 +01:00

25 lines
468 B
YAML

name: CI
on:
push: ~
pull_request: ~
schedule:
- cron: '0 12 * * *'
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm ci
- run: npx playwright install firefox
- run: npm run test-prepare-pdfs
- run: npm test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30