Skip to content

health

health #153

Workflow file for this run

name: health
on:
push:
branches:
- master
schedule:
- cron: '0 0 * * 0'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: '8.x'
- name: Install packages
run: npm i
- name: Run health check
run: npm run test