Skip to content

Commit

Permalink
Add custom actions to debug pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
augustocristian committed Apr 12, 2024
1 parent 7542dfa commit e74c997
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/deploy-forteste2e.yml
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

0 comments on commit e74c997

Please sign in to comment.