Bump express from 4.19.2 to 4.21.0 in /frontend #205
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: test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Build Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build the stack | |
run: docker-compose up -d --build | |
- name: Check the deployed service URL | |
uses: jtalk/url-health-check-action@v2 | |
with: | |
# Check the following URLs one by one sequentially | |
url: http://127.0.0.1:8088/metrics|http://127.0.0.1:8087/metrics|http://127.0.0.1:8089/metrics | |
# Fail this action after this many failed attempts | |
max-attempts: 5 | |
# Delay between retries | |
retry-delay: 5s | |
# Retry all errors, including 404. This option might trigger curl upgrade. | |
retry-all: true | |
- name: Download dataset | |
run: wget https://cdn.gorse.io/example/github.sql | |
- name: Import dataset | |
run: mysql -h 127.0.0.1 -u gorse -pgorse_pass gorse < github.sql |