-
-
Notifications
You must be signed in to change notification settings - Fork 606
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Add example on how to install and run on M$ (#4043)
* Add example on how to install and run on M$ * simplify * hepp * viewport
- v36.0.0-alpha.2
- v36.0.0-alpha.1
- v35.7.5
- v35.7.4
- v35.7.3
- v35.7.2
- v35.7.1
- v35.7.0
- v35.6.1
- v35.6.0
- v35.5.0
- v35.4.1
- v35.4.0
- v35.3.1
- v35.3.0
- v35.2.0
- v35.1.6
- v35.1.5
- v35.1.4
- v35.1.3
- v35.1.2
- v35.1.1
- v35.1.0
- v35.0.0
- v34.14.0
- v34.13.0
- v34.12.1
- v34.12.0
- v34.11.2
- v34.11.1
- v34.11.0
- v34.10.0
- v34.9.0
- v34.8.2
- v34.8.1
- v34.8.0
- v34.7.1
- v34.7.0
- v34.6.0
- v34.5.0
- v34.4.0
- v34.3.5
- v34.3.4
- v34.3.3
- v34.3.2
- v34.3.1
- v34.3.0
- v34.2.2
- v34.2.1
- v34.2.0
- v34.1.2
- v34.1.1
- v34.1.0
- v34.0.3
- v34.0.2
- v34.0.1
- v34.0.0
- v33.6.1
- v33.6.0
- v33.5.0
- v33.4.0
- v33.3.0
- v33.2.0
- v33.1.1
- v33.1.0
- v33.0.0
- v32.2.0
- v32.1.0
- v32.0.0
- v31.2.1
- v31.2.0
- v31.1.1
- v31.1.0
- v31.0.1
1 parent
aff9a53
commit 6cd9188
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Example to run sitespeed.io on Windows | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Use Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20.x' | ||
- name: Install sitespeed.io | ||
run: npm install sitespeed.io -g | ||
shell: bash | ||
- name: Install dependencies | ||
run: | | ||
choco install ffmpeg | ||
choco outdated | ||
choco install python | ||
choco install googlechrome | ||
python -m pip install --upgrade --user pip | ||
python -m pip install --upgrade --user setuptools | ||
python -m pip install --user pyssim OpenCV-Python Numpy scipy | ||
python -m pip --version | ||
python -m pip show Pillow | ||
python -m pip show pyssim | ||
shell: cmd | ||
- name: Example running test on Windows | ||
run: sitespeed.io -n 1 --video --visualMetrics --viewPort 1024x768 https://www.sitespeed.io/ | ||
shell: bash |