Rete QA for react v16 #54
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: Rete QA Regression | |
run-name: Rete QA for ${{ inputs.name }} v${{ inputs.version }} | |
on: | |
workflow_call: | |
inputs: | |
name: | |
required: true | |
type: string | |
version: | |
required: true | |
type: number | |
node: | |
type: number | |
workflow_dispatch: | |
inputs: | |
name: | |
required: true | |
type: choice | |
description: Stack | |
options: | |
- react | |
- vue | |
- angular | |
- svelte | |
version: | |
required: true | |
type: number | |
description: Stack version | |
node: | |
type: number | |
description: 'Node.js version (default: 16)' | |
jobs: | |
init: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ inputs.node || 16 }} | |
- name: Install Rete QA | |
run: npm i -g rete-qa rete-kit | |
- name: Init application | |
run: rete-qa init -s ${{ inputs.name }} -sv ${{ inputs.version }} | |
env: | |
CI: "" | |
- name: Prune node_modules | |
run: npx rimraf --glob **/node_modules | |
working-directory: .rete-qa | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: rete-qa | |
path: .rete-qa | |
retention-days: 3 | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
needs: [init] | |
strategy: | |
matrix: | |
browser: [chromium,firefox,webkit] | |
steps: | |
- name: Install fonts | |
run: | | |
sudo apt-get -qqy update | |
sudo apt-get -qqy --no-install-recommends install \ | |
libfontconfig \ | |
libfreetype6 \ | |
xfonts-cyrillic \ | |
xfonts-scalable \ | |
fonts-liberation \ | |
fonts-ipafont-gothic \ | |
fonts-wqy-zenhei \ | |
fonts-tlwg-loma-otf \ | |
fonts-freefont-ttf | |
sudo rm -rf /var/lib/apt/lists/* | |
sudo apt-get -qyy clean | |
- uses: actions/download-artifact@v4 | |
with: | |
name: rete-qa | |
path: .rete-qa | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ inputs.node || 16 }} | |
- name: Install Rete QA | |
run: npm i -g rete-qa rete-kit | |
- name: Install Playwright Browsers | |
run: npx playwright install --with-deps | |
- name: Run Playwright tests | |
run: rete-qa test -s ${{ inputs.name }} -sv ${{ inputs.version }} --project ${{ matrix.browser }} | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: test-results | |
path: test-results/ | |
retention-days: 7 |