Skip to content

Commit 95b8f8c

Browse files
committed
add versions
1 parent 5ee1476 commit 95b8f8c

8 files changed

Lines changed: 41 additions & 1 deletion

.github/workflows/browser_test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ jobs:
2020
BRANCH_NAME=$(echo "${{ github.ref }}" | awk -F'/' '{print $3}')
2121
echo "::set-output name=TEST_RUN_NAME::${{ matrix.browser }}-${{ github.workflow }}—$BRANCH_NAME"
2222
23+
- name: Install node version 16
24+
uses: actions/setup-node@v3
25+
with:
26+
node-version: '18'
27+
2328
- name: Install root dependencies
2429
run: npm install
2530

.github/workflows/cypress_version-test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ jobs:
1313
- name: Checkout
1414
uses: actions/checkout@v4
1515

16+
- name: Install node version 16
17+
uses: actions/setup-node@v3
18+
with:
19+
node-version: '18'
20+
1621
- name: Extract Branch Name and Set Test Run Name
1722
id: set-test-run-name
1823
run: |

.github/workflows/npm-package_test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ jobs:
1717
- name: Checkout
1818
uses: actions/checkout@v4
1919

20+
- name: Install node version 16
21+
uses: actions/setup-node@v3
22+
with:
23+
node-version: '18'
24+
2025
- name: Install Visual Test & Cypress from NPM
2126
run: npm install cypress @smartbear/visualtest-cypress@latest
2227
working-directory: ./test/npm-package-test

.github/workflows/print_report-test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ jobs:
88
- name: Checkout
99
uses: actions/checkout@v4
1010

11+
- name: Install node version 16
12+
uses: actions/setup-node@v3
13+
with:
14+
node-version: '18'
15+
1116
- name: Install root dependencies
1217
run: npm install
1318

.github/workflows/sonar-qube.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ jobs:
1212
name: Build
1313
runs-on: self-hosted
1414
steps:
15+
- name: Install node version 16
16+
uses: actions/setup-node@v3
17+
with:
18+
node-version: '18'
19+
1520
- uses: actions/checkout@v4
1621
with:
1722
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

.github/workflows/typescript-test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ jobs:
2121
BRANCH_NAME=$(echo "${{ github.ref }}" | awk -F'/' '{print $3}')
2222
echo "::set-output name=TEST_RUN_NAME::${{ github.workflow }}—$BRANCH_NAME"
2323
24+
- name: Install node version 16
25+
uses: actions/setup-node@v3
26+
with:
27+
node-version: '18'
28+
2429
- name: Install root dependencies
2530
run: npm install
2631

.github/workflows/violations-test.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ jobs:
99
- name: Checkout
1010
uses: actions/checkout@v4
1111

12+
- name: Install node version 16
13+
uses: actions/setup-node@v3
14+
with:
15+
node-version: '18'
16+
1217
- name: Extract Branch Name and Set Test Run Name
1318
id: set-test-run-name
1419
run: |

.github/workflows/webkit-browser_test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ jobs:
1313
- name: Checkout code
1414
uses: actions/checkout@v4
1515

16+
- name: Install node version 16
17+
uses: actions/setup-node@v3
18+
with:
19+
node-version: '18'
20+
1621
- name: Install root dependencies
1722
run: npm install
1823

@@ -22,7 +27,7 @@ jobs:
2227

2328
- name: Install linux sharp
2429
run: npm install --include=optional sharp
25-
30+
2631
- name: Install webkit
2732
if: ${{ startsWith(matrix.browser, 'webkit') }}
2833
run: npm install playwright-webkit@1.34.0

0 commit comments

Comments
 (0)