Skip to content

Commit

Permalink
create the app during the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
arnard76 committed Apr 24, 2024
1 parent add5743 commit c55af99
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/end-to-end-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
# Install npm dependencies, cache them correctly
# and run all Cypress tests
- name: Create app for workflow
run: |
npm i concurrently
concurrently "cd frontend && npm i && npm start" "cd backend && npm i npm start"
- name: Cypress run
uses: cypress-io/github-action@v6

with:
working-directory: ./frontend/

0 comments on commit c55af99

Please sign in to comment.