You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Workflow files stored in the default location of `.github/workflows`. (You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.)
11
+
directory: "/"
12
+
schedule:
13
+
interval: "weekly"
14
+
# Maintain dependencies for node
15
+
- package-ecosystem: "npm"# See documentation for possible values
The `plugin-js` is a plugin for [sitespeed.io](https://www.sitespeed.io/) that helps identify and log "Javascript" (JS) errors during web testing. It integrates with sitespeed.io to provide detailed information about JS errors.
7
+
8
+
## Features
9
+
10
+
11
+
## Installation
12
+
13
+
To install the plugin, run the following command:
14
+
15
+
```sh
16
+
npm install plugin-js
17
+
```
18
+
19
+
## Usage
20
+
21
+
To use the plugin with sitespeed.io, add it to your sitespeed.io configuration file or command line options.
22
+
23
+
### Configuration
24
+
25
+
Add the plugin to your sitespeed.io configuration file:
26
+
27
+
```json
28
+
{
29
+
"plugins": {
30
+
"plugin-js": {
31
+
"enabled": true
32
+
}
33
+
}
34
+
}
35
+
```
36
+
37
+
### Command Line
38
+
39
+
You can also enable the plugin via the command line:
40
+
41
+
```sh
42
+
sitespeed.io --plugins.add plugin-js
43
+
```
44
+
45
+
## Example
46
+
47
+
Here is an example of how to use the plugin with sitespeed.io:
0 commit comments