We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf67857 commit b2a3403Copy full SHA for b2a3403
1 file changed
.github/actions/build-and-test/action.yml
@@ -39,12 +39,14 @@ runs:
39
microsoft-edge --version
40
EDGE_PATH=$(which microsoft-edge)
41
echo "edge-path=$EDGE_PATH" >> $GITHUB_OUTPUT
42
+ - name: Install Puppeteer Browsers
43
+ shell: bash
44
+ run: npx puppeteer browsers install
45
- name: Test
46
shell: bash
47
env:
48
EDGE_PATH: ${{ steps.install-edge.outputs.edge-path }}
49
run: |
- npx puppeteer browsers install
50
php -S 0.0.0.0:8899 -t $GITHUB_WORKSPACE/tests/simple-server > /dev/null 2>&1 &
51
sleep 2
52
npm run test:e2e
0 commit comments