Skip to content

Commit 208ce97

Browse files
committed
add lighthouse action
1 parent e89340c commit 208ce97

File tree

4 files changed

+54
-0
lines changed

4 files changed

+54
-0
lines changed

.github/workflows/lighthouse.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Lighthouse CI with a plugin
2+
on: push
3+
jobs:
4+
lighthouse:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- run: npm install # install dependencies, that includes Lighthouse plugins
9+
- name: Audit URLs with Field Performance Plugin
10+
uses: treosh/lighthouse-ci-action@v9
11+
with:
12+
urls: |
13+
https://firstcontributions.github.io
14+
https://github.com/firstcontributions/first-contributions
15+
configPath: '.lighthouserc.json'
16+
temporaryPublicStorage: true

lighthouserc.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"ci": {
3+
"collect": {
4+
"settings": {
5+
"plugins": ["lighthouse-plugin-field-performance"]
6+
}
7+
}
8+
}
9+
}

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"@rollup/plugin-commonjs": "^11.0.0",
1212
"@rollup/plugin-node-resolve": "^6.0.0",
1313
"jest": "^26.0.1",
14+
"lighthouse-plugin-field-performance": "^3.0.0",
1415
"rollup": "^1.20.0",
1516
"rollup-plugin-livereload": "^1.0.0",
1617
"rollup-plugin-svelte": "^5.0.3",

yarn.lock

+28
Original file line numberDiff line numberDiff line change
@@ -858,6 +858,11 @@ bcrypt-pbkdf@^1.0.0:
858858
dependencies:
859859
tweetnacl "^0.14.3"
860860

861+
before-after-hook@^2.2.0:
862+
version "2.2.2"
863+
resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.2.tgz#a6e8ca41028d90ee2c24222f201c90956091613e"
864+
integrity sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==
865+
861866
binary-extensions@^1.0.0:
862867
version "1.13.1"
863868
resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65"
@@ -1160,6 +1165,11 @@ dashdash@^1.12.0:
11601165
dependencies:
11611166
assert-plus "^1.0.0"
11621167

1168+
data-uri-to-buffer@^4.0.0:
1169+
version "4.0.0"
1170+
resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz#b5db46aea50f6176428ac05b73be39a57701a64b"
1171+
integrity sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA==
1172+
11631173
data-urls@^2.0.0:
11641174
version "2.0.0"
11651175
resolved "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b"
@@ -1235,6 +1245,11 @@ delayed-stream@~1.0.0:
12351245
resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
12361246
integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
12371247

1248+
deprecation@^2.0.0, deprecation@^2.3.1:
1249+
version "2.3.1"
1250+
resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919"
1251+
integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==
1252+
12381253
detect-newline@^3.0.0:
12391254
version "3.1.0"
12401255
resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651"
@@ -2482,6 +2497,14 @@ levn@~0.3.0:
24822497
prelude-ls "~1.1.2"
24832498
type-check "~0.3.2"
24842499

2500+
lighthouse-plugin-field-performance@^3.0.0:
2501+
version "3.0.0"
2502+
resolved "https://registry.yarnpkg.com/lighthouse-plugin-field-performance/-/lighthouse-plugin-field-performance-3.0.0.tgz#5924e2dce4ff807388b2ca3cb840a0e8d4ea3104"
2503+
integrity sha512-6DfS0e3Nte9XT7ygDh19BKs2Cr8VeulBILUuz/pUqVgq5osh1lwGzpjAgf+pDRWDLmUsgsuLJEEtO8+xKMZwng==
2504+
dependencies:
2505+
lodash "^4.17.21"
2506+
node-fetch "^2.6.1"
2507+
24852508
lines-and-columns@^1.1.6:
24862509
version "1.1.6"
24872510
resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
@@ -2518,6 +2541,11 @@ lodash@^4.17.13, lodash@^4.17.15:
25182541
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b"
25192542
integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==
25202543

2544+
lodash@^4.17.21:
2545+
version "4.17.21"
2546+
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
2547+
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
2548+
25212549
magic-string@^0.25.2:
25222550
version "0.25.6"
25232551
resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.25.6.tgz#5586387d1242f919c6d223579cc938bf1420795e"

0 commit comments

Comments
 (0)