Skip to content

Rete QA Regression

Rete QA Regression #2

Workflow file for this run

name: Rete QA Regression
on:
workflow_dispatch:
inputs:
name:
type: choice
description: Stack
options:
- react
- vue
- angular
- svelte
version:
type: number
description: Stack version
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: npm ci
- name: Build tool
run: npm run build
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Init application
run: node ./dist/index.js init -s ${{ github.event.inputs.name }} -sv ${{ github.event.inputs.version }}
- name: Run Playwright tests
run: node ./dist/index.js test -s ${{ github.event.inputs.name }} -sv ${{ github.event.inputs.version }}