Skip to content

Update client.ts function var name #54

Update client.ts function var name

Update client.ts function var name #54

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the stack
working-directory: ./tests
run: docker-compose up -d
- name: Check the deployed service health
uses: jtalk/url-health-check-action@v2
with:
# Check the following URLs one by one sequentially
url: http://127.0.0.1:8088/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
- uses: actions/setup-node@v3
with:
cache: "yarn"
- run: yarn install
- run: yarn test