Merge branch 'main' into video-tutorials
This commit is contained in:
commit
507d3d3510
|
|
@ -40,8 +40,12 @@ jobs:
|
|||
run: (serve test/data/html/ -l 3001&)
|
||||
- name: Test old budget
|
||||
run: bin/sitespeed.js -b firefox -n 2 --budget.configPath test/oldBudget.json --summary --xvfb http://127.0.0.1:3001/simple/
|
||||
- name: Test new budget file
|
||||
run: bin/sitespeed.js --useHash -n 1 --budget.configPath test/budget.json --xvfb http://127.0.0.1:3001/simple/#heybaberia
|
||||
- name: Test new budget file with junit
|
||||
run: bin/sitespeed.js --useHash -n 1 --budget.configPath test/budget.json --xvfb --budget.output junit http://127.0.0.1:3001/simple/#heybaberia
|
||||
- name: Test new budget file with tap
|
||||
run: bin/sitespeed.js --useHash -n 1 --budget.configPath test/budget.json --xvfb --budget.output tap http://127.0.0.1:3001/simple/#heybaberia
|
||||
- name: Test new budget file with json
|
||||
run: bin/sitespeed.js --useHash -n 1 --budget.configPath test/budget.json --xvfb --budget.output json http://127.0.0.1:3001/simple/#heybaberia
|
||||
- name: Use AXE
|
||||
run: bin/sitespeed.js --useAlias start --mobile -n 1 --utc --axe.enable --xvfb http://127.0.0.1:3001/simple/
|
||||
- name: Use Fireefox with --mobile
|
||||
|
|
|
|||
|
|
@ -5,6 +5,10 @@
|
|||
### Added
|
||||
* Updated base Docker image to use Ubuntu 22.04 [#3636](https://github.com/sitespeedio/sitespeed.io/pull/3636).
|
||||
|
||||
### Tech
|
||||
* Use Ava for unit testing [#3637](https://github.com/sitespeedio/sitespeed.io/pull/3637)
|
||||
* Use local HTTP server to speed up GitHub Action tests [#3638](https://github.com/sitespeedio/sitespeed.io/pull/3638).
|
||||
|
||||
## 24.1.0 - 2022-04-22
|
||||
### Added
|
||||
* Update Grafana auth settings to allow api token or basic auth, thank you [Vladimir Stepanov](https://github.com/vs-odessa) for PR [#3627](https://github.com/sitespeedio/sitespeed.io/pull/3627).
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
28
package.json
28
package.json
|
|
@ -59,18 +59,18 @@
|
|||
"node": ">=14.19.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ava": "4.0.1",
|
||||
"ava": "4.2.0",
|
||||
"changelog-parser": "2.8.1",
|
||||
"clean-css-cli": "4.3.0",
|
||||
"eslint": "8.0.0",
|
||||
"eslint-config-prettier": "8.3.0",
|
||||
"clean-css-cli": "5.6.0",
|
||||
"eslint": "8.14.0",
|
||||
"eslint-config-prettier": "8.5.0",
|
||||
"eslint-plugin-prettier": "4.0.0",
|
||||
"feed": "4.2.2",
|
||||
"jsdoc": "^3.6.7",
|
||||
"license-checker": "^16.0.0",
|
||||
"marked": "4.0.12",
|
||||
"sass": "1.34.0",
|
||||
"prettier": "2.4.1",
|
||||
"license-checker": "^25.0.0",
|
||||
"marked": "4.0.14",
|
||||
"sass": "1.51.0",
|
||||
"prettier": "2.6.2",
|
||||
"pug-lint": "^2.6.0",
|
||||
"pug-lint-config-clock": "^2.0.0"
|
||||
},
|
||||
|
|
@ -78,22 +78,22 @@
|
|||
"dependencies": {
|
||||
"@google-cloud/storage": "5.19.3",
|
||||
"@tgwf/co2": "0.8.0",
|
||||
"aws-sdk": "2.1118.0",
|
||||
"aws-sdk": "2.1121.0",
|
||||
"axe-core": "4.4.1",
|
||||
"browsertime": "16.1.0",
|
||||
"coach-core": "7.1.1",
|
||||
"cli-color": "2.0.0",
|
||||
"cli-color": "2.0.2",
|
||||
"concurrent-queue": "7.0.2",
|
||||
"dayjs": "1.11.1",
|
||||
"fast-crc32c": "2.0.0",
|
||||
"fast-stats": "0.0.6",
|
||||
"find-up": "5.0.0",
|
||||
"fs-extra": "9.1.0",
|
||||
"fs-extra": "10.1.0",
|
||||
"getos": "3.2.1",
|
||||
"influx": "5.6.3",
|
||||
"influx": "5.9.3",
|
||||
"intel": "1.2.0",
|
||||
"jstransformer-markdown-it": "2.1.0",
|
||||
"junit-report-builder": "1.3.3",
|
||||
"junit-report-builder": "3.0.0",
|
||||
"lodash.chunk": "4.2.0",
|
||||
"lodash.clonedeep": "4.5.0",
|
||||
"lodash.flatten": "4.4.0",
|
||||
|
|
@ -113,7 +113,7 @@
|
|||
"pug": "3.0.2",
|
||||
"recursive-readdir": "2.2.2",
|
||||
"simplecrawler": "1.1.9",
|
||||
"tape": "4.13.0",
|
||||
"tape": "5.5.3",
|
||||
"text-table": "0.2.0",
|
||||
"uuid": "8.3.2",
|
||||
"yargs": "17.4.1"
|
||||
|
|
|
|||
Loading…
Reference in New Issue