Skip to content

28.1.0

28.1.0 #2727

Workflow file for this run

name: Windows Edge
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Install sitespeed.io
run: npm ci
env:
CHROMEDRIVER_SKIP_DOWNLOAD: true
GECKODRIVER_SKIP_DOWNLOAD: true
- run: choco outdated
- name: Install dependencies
run: choco install microsoft-edge --force
- name: Run Edge test
run: node bin/sitespeed.js -b edge https://www.sitespeed.io/
shell: cmd
- name: Run Edge test with scripting
run: node bin/sitespeed.js -b edge --multi test/prepostscripts/multiWindows.cjs -n 1
shell: cmd