Skip to content

Commit 196a57a

Browse files
committed
Update tlighthouse-ci.yml to install on macos and windows
1 parent 443614f commit 196a57a

File tree

1 file changed

+24
-4
lines changed

1 file changed

+24
-4
lines changed

.github/workflows/tlighthouse-ci.yml

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,30 @@ jobs:
1616

1717
- name: Install Dependencies
1818
run: npm ci
19+
20+
install-macos:
21+
name: Install TLighthouse
22+
runs-on: macos-latest
23+
24+
steps:
25+
- uses: actions/checkout@v3
26+
27+
- name: Install Dependencies
28+
run: npm ci
29+
30+
install-windows:
31+
name: Install TLighthouse
32+
runs-on: windows-latest
33+
34+
steps:
35+
- uses: actions/checkout@v3
36+
37+
- name: Install Dependencies
38+
run: npm ci
1939

20-
test-ubuntu:
40+
test:
2141
name: Test TLighthouse
22-
needs: install-ubuntu
42+
needs: [install-ubuntu, install-macos, install-windows]
2343
runs-on: ubuntu-latest
2444

2545
steps:
@@ -32,9 +52,9 @@ jobs:
3252
- name: Testing with Jest
3353
run: npm test
3454

35-
running-ubuntu:
55+
running:
3656
name: Run TLighthouse
37-
needs: test-ubuntu
57+
needs: test
3858
runs-on: ubuntu-latest
3959

4060
steps:

0 commit comments

Comments
 (0)