Skip to content

Commit 6b6c2e5

Browse files
Update node version
1 parent 54b99c0 commit 6b6c2e5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/github-actions-after-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
ref: develop
1515

1616
- name: Install node
17-
uses: actions/setup-node@v2
17+
uses: actions/setup-node@v4
1818
with:
1919
node-version: '20'
2020

.github/workflows/github-actions-manually.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ jobs:
77
steps:
88
- name: Checkout
99
uses: actions/checkout@v2
10-
10+
1111
- name: Install node
12-
uses: actions/setup-node@v2
12+
uses: actions/setup-node@v4
1313
with:
14-
node-version: '20'
14+
node-version: "20"
1515

1616
- uses: microsoft/playwright-github-action@v1
1717

1818
- name: Install dependencies
1919
run: npm install
2020

2121
- name: Install browsers
22-
run: npm i playwright-chromium
22+
run: npm i playwright-chromium
2323

2424
- name: Run tests
25-
run: npx playwright test
25+
run: npx playwright test

0 commit comments

Comments
 (0)