Skip to content

Merge pull request #238 from aronnebrivio/dependabot/github_actions/J… #512

Merge pull request #238 from aronnebrivio/dependabot/github_actions/J…

Merge pull request #238 from aronnebrivio/dependabot/github_actions/J… #512

Workflow file for this run

name: CI
on: [push]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install and Build 🔧
run: |
npm install
npm run build
- name: Lighthouse
run: |
npm install -g @lhci/[email protected]
lhci autorun
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}