Skip to content

Instantly share code, notes, and snippets.

@Kazuki-tam
Last active July 19, 2020 12:10
Show Gist options
  • Save Kazuki-tam/8b919f3fed79f38860ee77320e3244be to your computer and use it in GitHub Desktop.
Save Kazuki-tam/8b919f3fed79f38860ee77320e3244be to your computer and use it in GitHub Desktop.
lighthouse-ci
lhci:
name: Lighthouse
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 10.x
uses: actions/setup-node@v1
with:
node-version: 10.x
- name: npm install, build
run: |
npm install
npm run build
- name: run Lighthouse CI
run: |
npm install -g @lhci/cli@0.4.x
lhci autorun
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment