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 f4bfe47Copy full SHA for f4bfe47
.github/workflows/test.yml
@@ -62,6 +62,29 @@ 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: playwright test
68
+ steps:
69
+ - uses: actions/checkout@v4
70
+ - name: Build test image
71
+ id: docker-build-test
72
+ uses: docker/build-push-action@v6
73
+ with:
74
+ target: server
75
+ push: false
76
+ load: true
77
+ - name: Run Perl tests
78
+ run: >
79
+ docker run -d -i -p 80:8000
80
+ ${{ steps.docker-build-test.outputs.imageid }}
81
+ - uses: actions/setup-node@v4
82
83
+ node-version: 22
84
+ - name: Install Playwright Browsers
85
+ run: ./bin/install-playwright
86
+ - name: Run Playwright tests
87
+ run: npx playwright test
88
test:
89
runs-on: ubuntu-24.04
90
name: Dockerless
0 commit comments