We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a10e6b9 commit 35ce884Copy full SHA for 35ce884
.github/workflows/test.yml
@@ -62,6 +62,28 @@ jobs:
62
load: true
63
- name: Run Perl tests
64
run: docker run -i ${{ steps.docker-build-test.outputs.imageid }}
65
+ playwright:
66
+ runs-on: ubuntu-24.04
67
+ name: Run via Docker
68
+ steps:
69
+ - name: Build test image
70
+ id: docker-build-test
71
+ uses: docker/build-push-action@v6
72
+ with:
73
+ target: server
74
+ push: false
75
+ load: true
76
+ - name: Run Perl tests
77
+ run: >
78
+ docker run -d -i -p 80:8000
79
+ ${{ steps.docker-build-test.outputs.imageid }}
80
+ - uses: actions/setup-node@v4
81
82
+ node-version: 22
83
+ - name: Install Playwright Browsers
84
+ run: ./bin/install-playwright
85
+ - name: Run Playwright tests
86
+ run: npx playwright test
87
test:
88
runs-on: ubuntu-24.04
89
name: Dockerless
0 commit comments