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 954b600 commit c910960Copy full SHA for c910960
.github/workflows/ci.yml
@@ -14,3 +14,24 @@ jobs:
14
run: sudo apt install make node-acorn shellcheck
15
- name: Run tests
16
run: make tests
17
+ ssllabs:
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - name: Checkout
21
+ uses: actions/checkout@v4
22
+ - name: Install Firefox
23
+ run: sudo apt install firefox
24
+ - name: Create profile directory
25
+ run: |
26
+ mkdir -v tmp
27
+ ln -sv user.js tmp/user.js
28
+ ls -l user.js tmp/user.js
29
+ - name: Screenshot SSL Labs
30
+ run: firefox --profile tmp -screenshot https://www.ssllabs.com/ssltest/viewMyClient.html
31
+ - name: Check profile directory
32
+ run: ls -l tmp/
33
+ - name: Archive screenshot
34
+ uses: actions/upload-artifact@v4
35
+ with:
36
+ name: screenshot.png
37
+ path: ./screenshot.png
0 commit comments