Skip to content

Commit c0a48f0

Browse files
committed
try to fix github action tests
1 parent 056d5dc commit c0a48f0

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Diff for: .github/workflows/main.yml

+7
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,18 @@ jobs:
4747
node: [ '18', '20', '22' ]
4848
name: Node ${{ matrix.node }} (${{ matrix.platform }})
4949
runs-on: ${{ matrix.platform }}
50+
timeout-minutes: 15
5051
steps:
5152
- uses: actions/checkout@v1
5253
- uses: actions/setup-node@v1
5354
with:
5455
node-version: ${{ matrix.node }}
56+
- name: Install Google Chrome on macOS
57+
if: runner.os == 'macOS'
58+
run: brew install --cask google-chrome
59+
- name: Install Google Chrome on Windows
60+
if: runner.os == 'Windows'
61+
run: choco install googlechrome
5562
- name: install dependencies
5663
run: yarn
5764
- name: patch packages

0 commit comments

Comments
 (0)