File tree 3 files changed +14
-14
lines changed
3 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 1
- name : Cypress
1
+ name : Cypress Test
2
2
3
3
on : [push]
4
4
@@ -11,17 +11,15 @@ jobs:
11
11
ports :
12
12
- 8025:8025
13
13
- 1025:1025
14
+ strategy :
15
+ fail-fast : false # https://github.com/cypress-io/github-action/issues/48
16
+ matrix :
17
+ containers : [ 1 ]
14
18
steps :
15
- - uses : actions/checkout@v1
16
- - name : Install Dependencies
17
- run : |
18
- npm install
19
- - name : Lint App
20
- run : |
21
- npm run check
22
- - name : Build App
23
- run : |
24
- npm run build
25
- - name : Run Cypress Tests
26
- run : |
27
- npm run cy:run
19
+ - uses : actions/checkout@v4
20
+ - name : Cypress run
21
+ uses : cypress-io/github-action@v6
22
+ with :
23
+ build : npm run build
24
+ wait-on : ' http://localhost:8025'
25
+ record : false
Original file line number Diff line number Diff line change 1
1
.github /
2
2
cypress /
3
3
.biome.json
4
+ cypress.config.ts
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import { defineConfig } from "cypress";
2
2
3
3
// noinspection JSUnusedGlobalSymbols
4
4
export default defineConfig ( {
5
+ projectId : "ko5dq3" ,
5
6
video : false ,
6
7
e2e : {
7
8
setupNodeEvents ( _on , _config ) { } ,
You can’t perform that action at this time.
0 commit comments