generated from Arquisoft/wiq_0
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add custom actions to debug pipeline
- Loading branch information
1 parent
7542dfa
commit e74c997
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Deploy e2e | ||
|
||
on: | ||
push: | ||
branches: | ||
- 139-fix-e2e-tests | ||
jobs: | ||
e2e-tests: | ||
name: End to end tests | ||
runs-on: self-hosted | ||
|
||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
|
||
- run: npm --prefix users/authservice install | ||
- run: npm --prefix users/userservice install | ||
- run: npm --prefix userhistory install | ||
- run: npm --prefix gatewayservice install | ||
- run: npm --prefix jordi install | ||
- run: npm --prefix webapp install | ||
- run: npm --prefix webapp run build | ||
|
||
- run: npm --prefix webapp run test:e2e |