ISSUE-149: Automatch screen should only show automatches #121
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: loginpage | |
on: | |
push: | |
branches: | |
- master | |
- main | |
pull_request: | |
branches: | |
- master | |
- main | |
workflow_dispatch: | |
jobs: | |
loginpage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: docker-compose up -d | |
run: docker-compose -f docker-compose.cicd.yml up -d | |
- name: sleep | |
run: sleep 240 | |
- name: wget | |
run: wget --no-check-certificate https://localhost:3000/crux/ | |
- name: down | |
run: docker-compose -f docker-compose.cicd.yml down |