Skip to content

Commit

Permalink
Update regression.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Ni55aN authored Jan 1, 2024
1 parent 6e82c0a commit 91ada9a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,14 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: ${{ inputs.node || 16 }}
- name: Cache global node modules
id: cache-npm
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-cache-global-node-modules
- name: Install Rete QA
if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }}
run: npm i -g rete-qa rete-kit
- name: Init application
run: rete-qa init -s ${{ inputs.name }} -sv ${{ inputs.version }}
Expand Down Expand Up @@ -84,7 +91,14 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: ${{ inputs.node || 16 }}
- name: Cache global node modules
id: cache-npm
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-cache-global-node-modules
- name: Install Rete QA
if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }}
run: npm i -g rete-qa rete-kit
- name: Install Playwright Browsers
run: npx playwright install --with-deps ${{ matrix.browser }}
Expand Down

0 comments on commit 91ada9a

Please sign in to comment.