Search Gradle plugins

com.cognifide.lighthouse

Runs Lighthouse tests on multiple sites / web pages with checking thresholds (useful on continuous integration, constant performance checking).

https://github.com/wttech/gradle-lighthouse-plugin

Sources: https://github.com/Cognifide/gradle-lighthouse-plugin.git

Version 1.0.3 (latest)

1.0.3

Created 10 February 2021.

Runs Lighthouse tests on multiple sites / web pages with checking thresholds (useful on continuous integration, constant performance checking).

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.cognifide.lighthouse") version "1.0.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.cognifide.gradle:lighthouse-plugin:1.0.3")
      }
    }
    
    apply(plugin = "com.cognifide.lighthouse")
  • Applying plugins to all subprojects .