We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3448616 commit a654ebeCopy full SHA for a654ebe
.github/workflows/test.yml
@@ -50,8 +50,18 @@ jobs:
50
- name: Build and start Docker Compose services
51
run: bash ./setup_github.sh && docker compose -f docker-compose.yaml up --build -d
52
53
- - name: Run tests
54
- run: docker compose run test npx cypress run
+ - name: Run E2E tests
+ uses: cypress-io/github-action@v6
55
+ with:
56
+ config: pageLoadTimeout=100000,baseUrl=http://localhost:8089
57
+ working-directory: test/
58
+
59
+ - name: Save artifact
60
+ uses: actions/upload-artifact@v4
61
62
+ name: build
63
+ if-no-files-found: error
64
+ path: build
65
66
- name: Tear down Docker Compose services
67
run: docker-compose down
0 commit comments