Skip to content

chore(deps-dev): bump @babel/core from 7.17.0 to 7.24.5 #129

chore(deps-dev): bump @babel/core from 7.17.0 to 7.24.5

chore(deps-dev): bump @babel/core from 7.17.0 to 7.24.5 #129

Workflow file for this run

name: Lighthouse
on: [pull_request]
jobs:
lighthouseci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- uses: actions/cache@v2
with:
path: ${{ github.workspace }}/.next/cache
# Generate a new cache whenever packages or source files change.
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
# If source files changed but packages didn't, rebuild from a prior cache.
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-
- run: yarn && yarn global add @lhci/[email protected]
- run: yarn build
- run: lhci autorun
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}