Test UI #235
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
# on: push | |
on: | |
workflow_run: | |
workflows: ["Build Angular"] | |
types: | |
- completed | |
name: Test UI | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.14.0] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the docker | |
run: | | |
docker compose build | |
docker compose up -d | |
- name: Check running containers | |
run: docker ps -a | |
- name: Create directory for artifacts | |
run: mkdir -p ./e2e/screenshots | |
- name: Install node modules | |
run: npm i | |
- name: Running test | |
run: npm test | |
- name: Archive artifacts | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: screenshots | |
path: ./e2e/screenshots |