From 8cadf96116fe0f75b210f8484453ccff49b796c6 Mon Sep 17 00:00:00 2001 From: Neshura Date: Tue, 2 Jan 2024 02:36:13 +0100 Subject: [PATCH] Add unlighthouse to Release + Pull Request Actions, Add Unlighthouse config file --- .forgejo/workflows/pull-requests.yml | 97 ++++++++++++++++------------ unlighthouse.config.ts | 12 ++++ 2 files changed, 67 insertions(+), 42 deletions(-) create mode 100644 unlighthouse.config.ts diff --git a/.forgejo/workflows/pull-requests.yml b/.forgejo/workflows/pull-requests.yml index bb41e22..43c7dd9 100644 --- a/.forgejo/workflows/pull-requests.yml +++ b/.forgejo/workflows/pull-requests.yml @@ -3,47 +3,60 @@ author: 'Neshura' on: - pull_request: - branches: - - main + pull_request: + branches: + - main jobs: - test: - runs-on: docker - steps: - - - name: Checking Out Repository Code - uses: https://code.forgejo.org/actions/checkout@v3 - - - name: Get Yarn Cache Directory - id: yarn-cache-dir-path - run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - - - name: Set Up Yarn Cache - uses: actions/cache@v3 - id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) - with: - path: ${{ steps.yarn-cache-dir-path.outputs.dir }} - key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-yarn- - - - name: Install Dependencies - run: yarn install - - - name: Run Linter - run: yarn lint - - - name: Check if Version in package.json matches Tag - run: | - echo "Test" - VERSION=$(cat package.json | grep "version" | sed 's/.*://' | tr -d , | tr -d \" ) - if test $VERSION != "${{ github.ref_name }}"; then - echo "Expected Version is: '${{ github.ref_name }}' actual Version is: '$VERSION'"; - exit 1 - else - echo "Version is: '$VERSION'"; - fi - - - name: Build website - run: yarn build + test: + runs-on: docker + steps: + - name: Checking Out Repository Code + uses: https://code.forgejo.org/actions/checkout@v3 + - name: Get Yarn Cache Directory + id: yarn-cache-dir-path + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT + + - name: Set Up Yarn Cache + uses: actions/cache@v3 + id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) + with: + path: ${{ steps.yarn-cache-dir-path.outputs.dir }} + key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn- + + - name: Install Dependencies + run: yarn install + + - name: Add Unlighthouse + run: yarn global add @unlighthouse/cli + + - name: Run Linter + run: yarn lint + + - name: Check if Version in package.json matches Tag + run: | + echo "Test" + VERSION=$(cat package.json | grep "version" | sed 's/.*://' | tr -d , | tr -d \" ) + if test $VERSION != "${{ github.ref_name }}"; then + echo "Expected Version is: '${{ github.ref_name }}' actual Version is: '$VERSION'"; + exit 1 + else + echo "Version is: '$VERSION'"; + fi + + - name: Build website + run: yarn build + + - name: Run Unlighthouse + run: | + unlighthouse-ci --build-static --desktop --outputPath reports/desktop + unlighthouse-ci --build-static --mobile --outputPath reports/mobile + + - name: Uploading Lighthouse Reports + uses: actions/upload-artifact@v3 + with: + name: lighthouse + path: reports + if-no-files-found: error diff --git a/unlighthouse.config.ts b/unlighthouse.config.ts new file mode 100644 index 0000000..037a05d --- /dev/null +++ b/unlighthouse.config.ts @@ -0,0 +1,12 @@ +export default { + site: 'http://localhost:8000', + ci: { + budget: { + 'performance': 90, + 'accessibility': 100, + 'best-practices': 90, + 'seo': 90, + }, + buildStatic: true + } +} \ No newline at end of file