Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
gui-tests:
needs: eslint
runs-on: ubuntu-latest
services:
engagesphere-backend:
image: wlsf82/engagesphereserver:amd64
ports:
- 3001:3001
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install backend modules
uses: cypress-io/github-action@v6
with:
install-command: npm run install:backend
runTests: false
- name: Install frontend modules
uses: cypress-io/github-action@v6
with:
Expand All @@ -48,21 +48,21 @@ jobs:
- name: Run frontend GUI tests 🧪
uses: cypress-io/github-action@v6
with:
start: npm run start:frontend, npm run start:server
start: npm run start:frontend
command: npm run test:frontend:gui:cloud
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
api-tests:
needs: eslint
runs-on: ubuntu-latest
services:
engagesphere-backend:
image: wlsf82/engagesphereserver:amd64
ports:
- 3001:3001
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install backend modules
uses: cypress-io/github-action@v6
with:
install-command: npm run install:backend
runTests: false
- name: Install frontend modules
uses: cypress-io/github-action@v6
with:
Expand All @@ -71,7 +71,7 @@ jobs:
- name: Run API tests 🧪
uses: cypress-io/github-action@v6
with:
start: npm run start:frontend, npm run start:server
start: npm run start:frontend
command: npm run test:api:cloud
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}