File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 9
9
timeout-minutes : 60
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v3
12
+ - uses : actions/checkout@v4
13
13
- name : Prepare .env file
14
14
run : |
15
15
rm -f .env && touch .env
16
16
echo "NEXT_PUBLIC_FORMSPREE_ID=fake123" >> .env
17
17
echo "NEXT_PUBLIC_RECAPTCHA_SITE_KEY=123fAkE" >> .env
18
- - uses : actions/setup-node@v3
18
+ - uses : actions/setup-node@v4
19
19
with :
20
- node-version : ' 18 .x'
20
+ node-version : ' 20 .x'
21
21
- name : Install dependencies
22
22
run : npm ci
23
23
- name : Install Playwright Browsers
24
24
run : npx playwright install --with-deps
25
25
- name : Run Playwright tests
26
26
run : npm run test
27
- - uses : actions/upload-artifact@v3
27
+ - uses : actions/upload-artifact@v4
28
28
if : always()
29
29
with :
30
30
name : playwright-report
Original file line number Diff line number Diff line change 9
9
timeout-minutes : 60
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v3
13
- - uses : actions/setup-node@v3
12
+ - uses : actions/checkout@v4
13
+ - uses : actions/setup-node@v4
14
14
with :
15
- node-version : ' 14 .x'
15
+ node-version : ' 20 .x'
16
16
- name : Install dependencies
17
17
run : npm ci
18
18
- name : Run code validation (includes linting, prettier and building)
You can’t perform that action at this time.
0 commit comments