Skip to content

Add Basic Auth and Skip Health Check Option #70

Add Basic Auth and Skip Health Check Option

Add Basic Auth and Skip Health Check Option #70

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: npm-cache
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ env.cache-name }}-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-${{ env.cache-name }}
${{ runner.os }}-node
- name: install
run: npm ci
- name: test
run: npm run test:ci:coverage