Skip to content

Commit

Permalink
feat(ci): lighthouse report test
Browse files Browse the repository at this point in the history
  • Loading branch information
teomrd committed Nov 13, 2024
1 parent df5f919 commit 225435e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/lighhouse.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Audit MiroPad with Lighthouse
on:
push:
branches:
- lighthouse
jobs:
build-and-audit:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- run: make build
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install -g @lhci/[email protected]
- run: lhci autorun
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}

0 comments on commit 225435e

Please sign in to comment.