File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 6262 load : true
6363 - name : Run Perl tests
6464 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+ with :
83+ node-version : 22
84+ - name : Install Playwright Browsers
85+ run : ./bin/install-playwright
86+ - name : Run Playwright tests
87+ run : npx playwright test
6588 test :
6689 runs-on : ubuntu-24.04
6790 name : Dockerless
You can’t perform that action at this time.
0 commit comments