Skip to content

Commit

Permalink
another another another try
Browse files Browse the repository at this point in the history
  • Loading branch information
Pablo-ArgF committed May 2, 2023
1 parent de01978 commit ba915bf
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ on:
branches: ['**']

jobs:
e2e-tests:
needs: [unit-test-webapp]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm --prefix webapp install
- run: npm --prefix webapp run build
env:
CI: ""
- run: npm --prefix webapp run test:e2e
unit-test-webapp:
runs-on: ubuntu-latest
defaults:
Expand All @@ -26,14 +39,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
e2e-tests:
needs: [unit-test-webapp]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm --prefix webapp install
- run: npm --prefix webapp CI=false run build
- run: npm --prefix webapp run test:e2e

0 comments on commit ba915bf

Please sign in to comment.