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.
workflows
1 parent 874151b commit 4128bd0Copy full SHA for 4128bd0
.github/workflows/running.yml
.github/workflows/test.yml
@@ -1,4 +1,4 @@
1
-name: Jest Test
+name: Initialize TLighthouse and Test using Jest
2
3
on:
4
pull_request:
@@ -24,4 +24,25 @@ jobs:
24
run: npm ci
25
26
- name: Test with Jest
27
- run: npm test
+ run: npm test
28
+
29
+ running:
30
+ name: Install and Run
31
32
+ runs-on: ubuntu-latest
33
34
+ strategy:
35
+ matrix:
36
+ node-version: [16.x, 18.x, 20.x]
37
38
+ steps:
39
+ - uses: actions/checkout@v3
40
41
+ - name: Set up Chrome
42
+ uses: browser-actions/setup-chrome@v1
43
44
+ - name: Install
45
+ run: npm ci
46
47
+ - name: Running the program
48
+ run: npm start
0 commit comments