Adding the release.yml #122
Workflow file for this run
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
name: Deploy on release | |
on: | |
release: | |
types: [published] | |
push: | |
branches: | |
- test-e2e-trial | |
jobs: | |
e2e-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 21 | |
- run: npm --prefix users/authservice install | |
- run: npm --prefix users/userservice install | |
- run: npm --prefix gatewayservice install | |
- run: npm --prefix historyservice install | |
- run: npm --prefix questionservice install | |
- run: npm --prefix roomservice install | |
- run: npm --prefix webapp install | |
- run: npm --prefix webapp run build | |
- run: npm --prefix webapp run test:e2e | |
env : | |
CI : "" |