Merge pull request #468 from openameba/renovate/treosh-lighthouse-ci-… #470
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: visual regression test | |
on: | |
push: | |
pull_request_target: | |
types: | |
- labeled | |
workflow_dispatch: | |
jobs: | |
visual-regression-test: | |
runs-on: ubuntu-latest | |
# need specified label if Pull-request | |
if: > | |
github.event_name == 'push' || | |
github.event_name == 'workflow_dispatch' || ( | |
github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'allow execute workflow') | |
) | |
steps: | |
- run: sudo apt-get --yes update | |
- run: sudo apt-get --yes install fonts-noto | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- id: npm-cache-dir | |
run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT | |
- id: npm-cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.npm-cache-dir.outputs.dir }} | |
key: ${{ runner.os }}-${{ github.event_name }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-${{ github.event_name }}-node- | |
- run: npm ci | |
- run: > | |
npm install -D | |
puppeteer | |
reg-keygen-git-hash-plugin | |
reg-notify-github-plugin | |
reg-publish-gcs-plugin | |
- run: npm run build | |
- run: npm start & | |
- name: take screenshots | |
run: > | |
find public -type f -name '*.html' | | |
sed -e 's/public//' | | |
xargs node ./npm_scripts/scrape.js "${PWD}/.reg-suit/actual_images" http://localhost:3000 | |
# reg-suit needs branch name | |
- run: git checkout ${{ github.head_ref || github.ref_name }} | |
- run: | | |
printf -- '%s' "$GOOGLE_APPLICATION_CREDENTIALS_JSON" | base64 --decode > "${PWD}/storage-key.json" | |
export GOOGLE_APPLICATION_CREDENTIALS="${PWD}/storage-key.json" | |
npx reg-suit run | |
env: | |
GCS_BUCKET_NAME_REG_SUIT: ${{ secrets.GCS_BUCKET_NAME_REG_SUIT }} | |
GOOGLE_APPLICATION_CREDENTIALS_JSON: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS_JSON }} | |
REG_SUIT_NOTIFY_CLIENT_ID: ${{ secrets.REG_SUIT_NOTIFY_CLIENT_ID }} |