From 78ae2d9d81547906fbcc700a015d3a7da9d3e2c9 Mon Sep 17 00:00:00 2001 From: Victoria Nduka <122698422+nwanduka@users.noreply.github.com> Date: Mon, 1 Jul 2024 12:56:06 +0100 Subject: [PATCH] Create lighthouse.yml --- .github/workflows/lighthouse.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/lighthouse.yml diff --git a/.github/workflows/lighthouse.yml b/.github/workflows/lighthouse.yml new file mode 100644 index 000000000..760f33fe2 --- /dev/null +++ b/.github/workflows/lighthouse.yml @@ -0,0 +1,31 @@ +name: lighthouse +on: + push: + branches: + - master + - develop + pull_request: + branches: + - master + - develop +jobs: + lighthouse: + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [20.x] + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - run: npm install + - run: npm install -g http-server + - run: npm run build --if-present + - run: http-server -s & + - name: Run Lighthouse + run: | + npm install -g lhci/cli@0.13.x + sleep 90 + lhci autorun