Add unlighthouse to Release + Pull Request Actions, Add Unlighthouse config file
Some checks failed
Run Tests on Code / test (push) Has been cancelled
Some checks failed
Run Tests on Code / test (push) Has been cancelled
This commit is contained in:
parent
d075b04ac8
commit
fb8c4c4fd9
3 changed files with 102 additions and 65 deletions
|
@ -10,15 +10,14 @@ jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
steps:
|
steps:
|
||||||
-
|
- name: Checking Out Repository Code
|
||||||
name: Checking Out Repository Code
|
|
||||||
uses: https://code.forgejo.org/actions/checkout@v3
|
uses: https://code.forgejo.org/actions/checkout@v3
|
||||||
-
|
|
||||||
name: Get Yarn Cache Directory
|
- name: Get Yarn Cache Directory
|
||||||
id: yarn-cache-dir-path
|
id: yarn-cache-dir-path
|
||||||
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
|
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
|
||||||
-
|
|
||||||
name: Set Up Yarn Cache
|
- name: Set Up Yarn Cache
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
|
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
|
||||||
with:
|
with:
|
||||||
|
@ -26,14 +25,17 @@ jobs:
|
||||||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-yarn-
|
${{ runner.os }}-yarn-
|
||||||
-
|
|
||||||
name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: yarn install
|
run: yarn install
|
||||||
-
|
|
||||||
name: Run Linter
|
- name: Add Unlighthouse
|
||||||
|
run: yarn global add @unlighthouse/cli
|
||||||
|
|
||||||
|
- name: Run Linter
|
||||||
run: yarn lint
|
run: yarn lint
|
||||||
-
|
|
||||||
name: Check if Version in package.json matches Tag
|
- name: Check if Version in package.json matches Tag
|
||||||
run: |
|
run: |
|
||||||
VERSION=$(cat package.json | grep "version" | sed 's/.*://' | tr -d , | tr -d \" | tr -d " " )
|
VERSION=$(cat package.json | grep "version" | sed 's/.*://' | tr -d , | tr -d \" | tr -d " " )
|
||||||
if test $VERSION != "${{ github.ref_name }}"; then
|
if test $VERSION != "${{ github.ref_name }}"; then
|
||||||
|
@ -41,29 +43,40 @@ jobs:
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
echo "Version is: '$VERSION'";
|
echo "Version is: '$VERSION'";
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
- 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
|
||||||
|
|
||||||
build:
|
build:
|
||||||
needs: test
|
needs: test
|
||||||
if: success()
|
if: success()
|
||||||
runs-on: dind
|
runs-on: dind
|
||||||
steps:
|
steps:
|
||||||
-
|
- name: Set up Docker Buildx
|
||||||
name: Set up Docker Buildx
|
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
with:
|
with:
|
||||||
config-inline: |
|
config-inline: |
|
||||||
[registry."docker.io"]
|
[registry."docker.io"]
|
||||||
mirrors = ["https://docker-cache.neshweb.net"]
|
mirrors = ["https://docker-cache.neshweb.net"]
|
||||||
-
|
|
||||||
name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: forgejo.neshweb.net
|
registry: forgejo.neshweb.net
|
||||||
username: ${{ secrets.FORGEJO_USERNAME }}
|
username: ${{ secrets.FORGEJO_USERNAME }}
|
||||||
password: ${{ secrets.FORGEJO_TOKEN }}
|
password: ${{ secrets.FORGEJO_TOKEN }}
|
||||||
-
|
|
||||||
name: Determine Docker tags
|
- name: Determine Docker tags
|
||||||
id: tags
|
id: tags
|
||||||
run: |
|
run: |
|
||||||
if echo ${{ github.ref_name }} | grep -qi '\-rc' ; then
|
if echo ${{ github.ref_name }} | grep -qi '\-rc' ; then
|
||||||
|
@ -72,8 +85,8 @@ jobs:
|
||||||
echo latest=forgejo.neshweb.net/neshweb-sites/${{ github.event.repository.name }}:latest >> $GITHUB_OUTPUT;
|
echo latest=forgejo.neshweb.net/neshweb-sites/${{ github.event.repository.name }}:latest >> $GITHUB_OUTPUT;
|
||||||
fi
|
fi
|
||||||
echo version=forgejo.neshweb.net/neshweb-sites/${{ github.event.repository.name }}:${{ github.ref_name }} >> $GITHUB_OUTPUT;
|
echo version=forgejo.neshweb.net/neshweb-sites/${{ github.event.repository.name }}:${{ github.ref_name }} >> $GITHUB_OUTPUT;
|
||||||
-
|
|
||||||
name: Push to Package Registry
|
- name: Push to Package Registry
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
push: true
|
push: true
|
||||||
|
@ -84,8 +97,7 @@ jobs:
|
||||||
if: success()
|
if: success()
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
steps:
|
steps:
|
||||||
-
|
- name: Release New Version
|
||||||
name: Release New Version
|
|
||||||
uses: actions/forgejo-release@v1
|
uses: actions/forgejo-release@v1
|
||||||
with:
|
with:
|
||||||
direction: upload
|
direction: upload
|
||||||
|
|
|
@ -3,47 +3,60 @@ author: 'Neshura'
|
||||||
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
steps:
|
steps:
|
||||||
-
|
- name: Checking Out Repository Code
|
||||||
name: Checking Out Repository Code
|
uses: https://code.forgejo.org/actions/checkout@v3
|
||||||
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
|
|
||||||
|
|
||||||
|
- 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
|
||||||
|
|
12
unlighthouse.config.ts
Normal file
12
unlighthouse.config.ts
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
export default {
|
||||||
|
site: 'http://localhost:8000',
|
||||||
|
ci: {
|
||||||
|
budget: {
|
||||||
|
'performance': 90,
|
||||||
|
'accessibility': 100,
|
||||||
|
'best-practices': 90,
|
||||||
|
'seo': 90,
|
||||||
|
},
|
||||||
|
buildStatic: true
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue