We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3753e8 commit c7d1a34Copy full SHA for c7d1a34
1 file changed
.github/workflows/e2e.yml
@@ -9,22 +9,22 @@ jobs:
9
timeout-minutes: 60
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
13
- name: Prepare .env file
14
run: |
15
rm -f .env && touch .env
16
echo "NEXT_PUBLIC_FORMSPREE_ID=fake123" >> .env
17
echo "NEXT_PUBLIC_RECAPTCHA_SITE_KEY=123fAkE" >> .env
18
- - uses: actions/setup-node@v4
+ - uses: actions/setup-node@v6
19
with:
20
- node-version: '20.x'
+ node-version: '24'
21
- name: Install dependencies
22
run: npm ci
23
- name: Install Playwright Browsers
24
run: npx playwright install --with-deps
25
- name: Run Playwright tests
26
run: npm run test
27
- - uses: actions/upload-artifact@v4
+ - uses: actions/upload-artifact@v5
28
if: always()
29
30
name: playwright-report
0 commit comments