Skip to content

Commit

Permalink
test: updated workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Toto-hitori committed Apr 30, 2024
1 parent 7a1733d commit e44add8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
- run: apt install openssl
- run: openssl req -newkey rsa:2048 -nodes -keyout server.key -out server.csr -subj "/CN=localhost"
- run: openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt
- run: openssl pkcs12 -export -out server.p12 -inkey server.key -in server.crt
- run: mv server.p12 /certs/keystore.p12
- run: docker compose --profile e2e up -d --pull always
- run: npm --prefix webapp install
- run: npm --prefix webapp run build
Expand Down

0 comments on commit e44add8

Please sign in to comment.