Skip to content

add some animation! #128

add some animation!

add some animation! #128

Workflow file for this run

name: Lighthouse
on: [push]
jobs:
lhci:
name: Lighthouse
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20
- name: npm install, build
run: |
npm install
npm run build
env:
AIRTABLE_BASE: ${{ secrets.AIRTABLE_BASE }}
AIRTABLE_TABLE: ${{ secrets.AIRTABLE_TABLE }}
AIRTABLE_TOKEN: ${{ secrets.AIRTABLE_TOKEN }}
- name: run Lighthouse CI
run: |
npm install -g @lhci/cli@0.14.x
lhci autorun
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}