New strings #3120
This file contains hidden or 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: "Regression Test - Google Lighthouse Based Test(s)" | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths-ignore: | |
| - '**.md' | |
| - '**software-full.json' | |
| - '**software-sources.json' | |
| - '**update-software.yml' | |
| - '**update_software_helper.py' | |
| - '**software-rules.json' | |
| - 'Dockerfile' | |
| - '**regression-test-404.yml' | |
| - '**regression-test-a11y-statement.yml' | |
| - '**regression-test-css.yml' | |
| - '**regression-test-docker-image.yml' | |
| - '**regression-test-email.yml' | |
| - '**regression-test-html.yml' | |
| - '**regression-test-http.yml' | |
| - '**regression-test-lint-css.yml' | |
| - '**regression-test-pa11y.yml' | |
| - '**regression-test-privacy.yml' | |
| - '**regression-test-sitespeed-browsertime-har.yml' | |
| - '**regression-test-sitespeed.yml' | |
| - '**regression-test-software.yml' | |
| - '**regression-test-standard-files.yml' | |
| - '**regression-test-tracking.yml' | |
| - '**regression-test-translations.yml' | |
| - '**regression-test-webbkoll.yml' | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| version: [30] | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v7 | |
| - name: Setup python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.13' # Version range or exact version of a Python version to use, using SemVer's version range syntax | |
| architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified | |
| - name: Setup dependencies using pip | |
| run: pip install -r requirements.txt | |
| - name: Setup Node.js (v4 version 24.x) | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24.x' | |
| - if: ${{ matrix.os == 'ubuntu-latest' }} | |
| shell: bash | |
| name: Setup Google Chrome browser (ONLY used for Sitespeed) | |
| run: | | |
| wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
| sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' | |
| sudo apt-get update | |
| sudo apt-get --only-upgrade install google-chrome-stable | |
| google-chrome --version | |
| - name: Setup npm packages | |
| run: npm install | |
| timeout-minutes: 30 | |
| - name: Start local HTTP server | |
| run: (npm run start-server&) | |
| - if: ${{ matrix.os == 'ubuntu-latest' }} | |
| name: RUNNING TEST - LINUX | |
| run: | | |
| python default.py -t ${{ matrix.version }} -r -u http://localhost:3000/ -o data/testresult-${{ matrix.version }}.json --setting tests.sitespeed.xvfb=true | |
| python .github/workflows/verify_result.py -t ${{ matrix.version }} | |
| - if: ${{ matrix.os == 'ubuntu-latest' && matrix.version == 1 }} | |
| name: RUNNING TEST - LINUX | |
| run: | | |
| node node_modules/sitespeed.io/bin/sitespeed.js -b chrome --xvfb --plugins.remove screenshot --plugins.remove html --plugins.remove metrics --browsertime.screenshot false --screenshot false --screenshotLCP false --browsertime.screenshotLCP false --chrome.cdp.performance false --browsertime.chrome.timeline false --videoParams.createFilmstrip false --visualMetrics false --visualMetricsPerceptual false --visualMetricsContentful false --browsertime.headless true --browsertime.chrome.includeResponseBodies all --utc true --browsertime.chrome.args ignore-certificate-errors -n 1 --plugins.add ../../../@sitespeed.io/plugin-lighthouse/index.js --plugins.add ../../../plugin-webperf-core/lib/index.js http://localhost:3000/?webperf-core-test-${{ matrix.version }} |