Skip to content

Commit 250629c

Browse files
authored
fix: testing PR checkers (#111)
1 parent 185f76a commit 250629c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/cypress.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
fail-fast: false
2323

2424
steps:
25-
- uses: actions/checkout@v4.1.1
25+
- uses: actions/checkout@v4.2.2
2626

2727
- name: Use Node.js ${{ matrix.node-version }}
28-
uses: actions/setup-node@v4.0.2
28+
uses: actions/setup-node@v4.4.0
2929
with:
3030
node-version: ${{ matrix.node-version }}
3131
cache: 'yarn'
@@ -48,7 +48,7 @@ jobs:
4848

4949
- name: Run Cypress tests
5050
id: cypress
51-
uses: cypress-io/github-action@v5.8.3
51+
uses: cypress-io/github-action@v6.9.2
5252
with:
5353
start: yarn start
5454
wait-on: 'http://localhost:3000'
@@ -57,15 +57,15 @@ jobs:
5757
record: false
5858

5959
- name: Upload Cypress screenshots
60-
uses: actions/upload-artifact@v4.3.1
60+
uses: actions/upload-artifact@v4.6.2
6161
if: failure()
6262
with:
6363
name: cypress-screenshots
6464
path: cypress/screenshots
6565
if-no-files-found: ignore
6666

6767
- name: Upload Cypress videos
68-
uses: actions/upload-artifact@v4.3.1
68+
uses: actions/upload-artifact@v4.6.2
6969
if: always()
7070
with:
7171
name: cypress-videos
@@ -75,7 +75,7 @@ jobs:
7575
# Add test summary to PR
7676
- name: Add PR Comment
7777
if: github.event_name == 'pull_request' && (success() || failure())
78-
uses: actions/github-script@v7
78+
uses: actions/github-script@v7.0.1
7979
with:
8080
script: |
8181
const testStatus = '${{ steps.cypress.outcome }}' === 'success' ? '✅' : '❌';

0 commit comments

Comments
 (0)