We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 056d5dc commit c0a48f0Copy full SHA for c0a48f0
.github/workflows/main.yml
@@ -47,11 +47,18 @@ jobs:
47
node: [ '18', '20', '22' ]
48
name: Node ${{ matrix.node }} (${{ matrix.platform }})
49
runs-on: ${{ matrix.platform }}
50
+ timeout-minutes: 15
51
steps:
52
- uses: actions/checkout@v1
53
- uses: actions/setup-node@v1
54
with:
55
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
62
- name: install dependencies
63
run: yarn
64
- name: patch packages
0 commit comments