Chrome/driver 129, Firefox 130 #707
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: OSX Chrome, Firefox and Edge | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: macos-13 | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: Install browsertime | |
run: npm ci | |
- name: Install python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | | |
brew update | |
brew install google-chrome | |
brew install --cask firefox | |
brew install --cask microsoft-edge | |
- name: Test Chrome | |
run: ./bin/browsertime.js -b chrome -n 1 https://www.sitespeed.io/ | |
- name: Test Firefox | |
run: ./bin/browsertime.js -b firefox -n 1 https://www.sitespeed.io/ | |
- name: Test Edge | |
run: ./bin/browsertime.js -b edge -n 1 https://www.sitespeed.io/ | |