Skip to content

Commit 602bf7d

Browse files
committed
chore: bump lhci references to 0.15
1 parent d2cdea9 commit 602bf7d

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/setup-node@v4
2222
with:
2323
node-version: 18
24-
- run: npm install && npm install -g @lhci/cli@0.14.x
24+
- run: npm install && npm install -g @lhci/cli@0.15.x
2525
- run: npm run build
2626
- run: lhci autorun
2727
```

docs/complex-setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fi
2424

2525
npm run deploy
2626

27-
npm install -g @lhci/cli@0.14.x
27+
npm install -g @lhci/cli@0.15.x
2828
lhci healthcheck --fatal
2929
lhci collect --url=http://localhost:9000/index.html
3030
lhci assert --preset="lighthouse:recommended"
@@ -121,7 +121,7 @@ Now that we have our environment ready, time to run Lighthouse CI. The `collect`
121121
122122
# Install Lighthouse CI
123123
# If you're already using node to manage your project, add it to your package.json `devDependencies` instead to skip this step.
124-
npm install -g @lhci/cli@0.14.x
124+
npm install -g @lhci/cli@0.15.x
125125

126126
# Run a healthcheck to make sure everything looks good before we run collection.
127127
lhci healthcheck --fatal

docs/getting-started.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
npm run build
9696
- name: run Lighthouse CI
9797
run: |
98-
npm install -g @lhci/cli@0.14.x
98+
npm install -g @lhci/cli@0.15.x
9999
lhci autorun
100100
```
101101
@@ -113,7 +113,7 @@ node_js: v16
113113
addons:
114114
chrome: stable
115115
before_install:
116-
- npm install -g @lhci/cli@0.14.x
116+
- npm install -g @lhci/cli@0.15.x
117117
script:
118118
- npm run build
119119
- lhci autorun
@@ -141,7 +141,7 @@ jobs:
141141
- browser-tools/install-chrome
142142
- run: npm install
143143
- run: npm run build
144-
- run: sudo npm install -g @lhci/cli@0.14.x
144+
- run: sudo npm install -g @lhci/cli@0.15.x
145145
- run: lhci autorun
146146
```
147147
@@ -176,7 +176,7 @@ lhci:
176176
script:
177177
- npm install
178178
- npm run build
179-
- npm install -g @lhci/cli@0.14.x
179+
- npm install -g @lhci/cli@0.15.x
180180
- lhci autorun --upload.target=temporary-public-storage --collect.settings.chromeFlags="--no-sandbox" || echo "LHCI failed!"
181181
```
182182

@@ -218,7 +218,7 @@ npm run build
218218
export CHROME_PATH=$(which google-chrome-stable)
219219
export LHCI_BUILD_CONTEXT__EXTERNAL_BUILD_URL="$BUILD_URL"
220220
221-
npm install -g @lhci/cli@0.14.x
221+
npm install -g @lhci/cli@0.15.x
222222
lhci autorun
223223
```
224224

@@ -267,7 +267,7 @@ steps:
267267
waitFor: ['build']
268268
name: cypress/browsers:node16.17.0-chrome106
269269
entrypoint: '/bin/sh'
270-
args: ['-c', 'npm install -g @lhci/cli@0.14.x && lhci autorun --failOnUploadFailure']
270+
args: ['-c', 'npm install -g @lhci/cli@0.15.x && lhci autorun --failOnUploadFailure']
271271
env:
272272
- 'LHCI_BUILD_CONTEXT__CURRENT_BRANCH=$BRANCH_NAME'
273273
@@ -373,7 +373,7 @@ jobs:
373373
npm run build
374374
- name: run Lighthouse CI
375375
run: |
376-
npm install -g @lhci/cli@0.14.x
376+
npm install -g @lhci/cli@0.15.x
377377
lhci autorun
378378
env:
379379
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}
@@ -471,7 +471,7 @@ Once the server is set up, _on your local laptop or desktop_, make sure you can
471471
```bash
472472
$ curl https://your-lhci-server.example.com/version # Make sure you can connect to your server.
473473
0.x.x
474-
$ npm install -g @lhci/cli@0.14.x # Install the Lighthouse CI CLI.
474+
$ npm install -g @lhci/cli@0.15.x # Install the Lighthouse CI CLI.
475475
Installing...
476476
$ lhci wizard # Use the wizard to create a project.
477477
? Which wizard do you want to run? new-project

0 commit comments

Comments
 (0)