From 05136f54163d97b090a570852739b442754d8237 Mon Sep 17 00:00:00 2001 From: Aleksey Kulikov Date: Wed, 3 Feb 2021 10:23:12 +0100 Subject: [PATCH] 7.0.0 --- README.md | 16 ++++++++-------- package.json | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index aff264b83..093bd8862 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Audit URLs using Lighthouse - uses: treosh/lighthouse-ci-action@v3 + uses: treosh/lighthouse-ci-action@v7 with: urls: | https://example.com/ @@ -85,7 +85,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Run Lighthouse on urls and validate with lighthouserc - uses: treosh/lighthouse-ci-action@v3 + uses: treosh/lighthouse-ci-action@v7 with: urls: 'https://exterkamp.codes/' configPath: './lighthouserc.json' @@ -132,7 +132,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Run Lighthouse on urls and upload data to private lhci server - uses: treosh/lighthouse-ci-action@v3 + uses: treosh/lighthouse-ci-action@v7 with: urls: 'https://example.com/' serverBaseUrl: ${{ secrets.LHCI_SERVER_URL }} @@ -162,7 +162,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Run Lighthouse on urls with lighthouserc - uses: treosh/lighthouse-ci-action@v3 + uses: treosh/lighthouse-ci-action@v7 with: urls: 'https://example.com/' configPath: './lighthouserc.json' @@ -239,7 +239,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Run Lighthouse against a static dist dir - uses: treosh/lighthouse-ci-action@v3 + uses: treosh/lighthouse-ci-action@v7 with: # no urls needed, since it uses local folder to scan .html files configPath: './lighthouserc.json' @@ -297,7 +297,7 @@ jobs: with: site_name: 'gallant-panini-bc8593' - name: Audit URLs using Lighthouse - uses: treosh/lighthouse-ci-action@v3 + uses: treosh/lighthouse-ci-action@v7 with: urls: | ${{ steps.netlify.outputs.url }} @@ -324,7 +324,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Run Lighthouse and test budgets - uses: treosh/lighthouse-ci-action@v3 + uses: treosh/lighthouse-ci-action@v7 with: urls: | https://pr-$PR_NUMBER.staging-example.com/ @@ -356,7 +356,7 @@ jobs: - uses: actions/checkout@v2 - run: npm install # install dependencies, that includes Lighthouse plugins - name: Audit URLs with Field Performance Plugin - uses: treosh/lighthouse-ci-action@v3 + uses: treosh/lighthouse-ci-action@v7 with: urls: | https://www.example.com/ diff --git a/package.json b/package.json index 6d12ce3ef..65ba3fbe1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lighthouse-ci-action", - "version": "3.1.0", + "version": "7.0.0", "license": "MIT", "description": "Run Lighthouse in CI using Github Actions", "repository": "treosh/lighthouse-ci-action",