Skip to content

Commit 014f687

Browse files
committed
Merge branch 'feat/record-in-fork-rev2' of https://github.com/MikeMcC399/github-action into feat/record-in-fork-rev2
2 parents 45aa1c2 + 16bf365 commit 014f687

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+441
-215
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: 'Add issue/PR to Triage Board'
2+
on:
3+
issues:
4+
types:
5+
- opened
6+
pull_request_target:
7+
types:
8+
- opened
9+
jobs:
10+
add-to-triage-project-board:
11+
uses: cypress-io/cypress/.github/workflows/triage_add_to_project.yml@develop
12+
secrets: inherit

.github/workflows/example-install-only.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
key: my-cache-${{ runner.os }}-${{ hashFiles('package-lock.json') }}
6464

6565
- name: Install Cypress 📥
66-
run: npm i cypress@12.6.0
66+
run: npm i cypress@12.7.0
6767

6868
- name: Cypress tests 🧪
6969
uses: ./

.github/workflows/example-node-versions.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ jobs:
1414
runs-on: ubuntu-22.04
1515
# let's make sure Cypress works on several versions of Node
1616
strategy:
17+
fail-fast: false
1718
matrix:
18-
node: [14, 16, 18]
19+
node: [14, 16, 18, 19]
1920
name: Cypress v9 E2E on Node v${{ matrix.node }}
2021
steps:
2122
- name: Setup Node
@@ -40,8 +41,9 @@ jobs:
4041
runs-on: ubuntu-22.04
4142
# let's make sure Cypress works on several versions of Node
4243
strategy:
44+
fail-fast: false
4345
matrix:
44-
node: [14, 16, 18]
46+
node: [14, 16, 18, 19]
4547
name: Cypress E2E on Node v${{ matrix.node }}
4648
steps:
4749
- name: Setup Node

.github/workflows/example-wait-on.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144
with:
145145
working-directory: examples/v9/react-scripts
146146
start: npm start
147-
wait-on: 'http://localhost:3000'
147+
wait-on: 'http://127.0.0.1:3000'
148148

149149
wait-using-custom-command-v9:
150150
runs-on: ubuntu-22.04
@@ -157,7 +157,7 @@ jobs:
157157
working-directory: examples/v9/react-scripts
158158
start: npm start
159159
# let's use wait-on NPM package to check the URL
160-
wait-on: 'npx wait-on --timeout 5000 http://localhost:3000'
160+
wait-on: 'npx wait-on --timeout 5000 http://127.0.0.1:3000'
161161

162162
ping-cli-v9:
163163
runs-on: ubuntu-22.04
@@ -178,7 +178,7 @@ jobs:
178178
uses: ./
179179
with:
180180
working-directory: examples/v9/wait-on-vite
181-
start: npm run dev
181+
start: npx vite --host
182182
wait-on: 'http://localhost:5173'
183183

184184
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Cypress v10 and higher ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #
@@ -317,7 +317,7 @@ jobs:
317317
with:
318318
working-directory: examples/react-scripts
319319
start: npm start
320-
wait-on: 'http://localhost:3000'
320+
wait-on: 'http://127.0.0.1:3000'
321321

322322
wait-using-custom-command:
323323
runs-on: ubuntu-22.04
@@ -330,7 +330,7 @@ jobs:
330330
working-directory: examples/react-scripts
331331
start: npm start
332332
# let's use wait-on NPM package to check the URL
333-
wait-on: 'npx wait-on --timeout 5000 http://localhost:3000'
333+
wait-on: 'npx wait-on --timeout 5000 http://127.0.0.1:3000'
334334

335335
ping-cli:
336336
runs-on: ubuntu-22.04
@@ -351,5 +351,5 @@ jobs:
351351
uses: ./
352352
with:
353353
working-directory: examples/wait-on-vite
354-
start: npm run dev
354+
start: npx vite --host
355355
wait-on: 'http://localhost:5173'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: 'Closed Issue Comment'
2+
on:
3+
issue_comment:
4+
types:
5+
- created
6+
jobs:
7+
closed-issue-comment:
8+
uses: cypress-io/cypress/.github/workflows/triage_closed_issue_comment.yml@develop
9+
secrets: inherit

DEVELOPMENT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
```yml
1919
name: End-to-end tests
20-
on: [push]
20+
on: push
2121
jobs:
2222
cypress-run:
2323
runs-on: 22.04

0 commit comments

Comments
 (0)