From 232f4aa44e7344f74c6983e0e34606e02fd199f5 Mon Sep 17 00:00:00 2001 From: Vitaliy Stoliarov Date: Fri, 22 Dec 2023 22:18:33 +0200 Subject: [PATCH] Update regression.yml --- .github/workflows/regression.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/regression.yml b/.github/workflows/regression.yml index 4a1c5b3..f2c8997 100644 --- a/.github/workflows/regression.yml +++ b/.github/workflows/regression.yml @@ -10,6 +10,8 @@ on: version: required: true type: number + node: + type: number workflow_dispatch: inputs: name: @@ -25,6 +27,9 @@ on: required: true type: number description: Stack version + node: + type: number + description: 'Node.js version (default: 16)' jobs: test: @@ -48,7 +53,7 @@ jobs: sudo apt-get -qyy clean - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: ${{ github.event.inputs.node || inputs.node || 16 }} - name: Install Rete QA run: npm i -g rete-qa rete-kit - name: Install Playwright Browsers