diff --git a/.github/workflows/lighthouse.yml b/.github/workflows/lighthouse.yml index 02bfa80e..affee18c 100644 --- a/.github/workflows/lighthouse.yml +++ b/.github/workflows/lighthouse.yml @@ -6,25 +6,25 @@ on: jobs: lhci: - name: Lighthouse CI - runs-on: ubuntu-latest - steps: - - name: Checkout - - uses: actions/checkout@v2 + - name: Lighthouse CI + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 - - name: Use Node.js 18 - uses: actions/setup-node@v1 - with: - node-version: 18 - cache: 'yarn' + - name: Use Node.js 18 + uses: actions/setup-node@v1 + with: + node-version: 18 + cache: 'yarn' - - name: Install packages - run: yarn install && yarn global add @lhci/cli + - name: Install packages + run: yarn install && yarn global add @lhci/cli - - name: Build - run: yarn build + - name: Build + run: yarn build - - name: Run Lighthouse CI - run: lhci autorun - env: - LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }} + - name: Run Lighthouse CI + run: lhci autorun + env: + LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}