Skip to content

feat: keploy integrate #82

feat: keploy integrate

feat: keploy integrate #82

Workflow file for this run

name: Node Mongo Express CI
on:
pull_request_target:
branches: [main]
jobs:
build_and_test:
name: Build & Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.17.x]
steps:
- uses: actions/checkout@v2
- name: Setup environment
uses: actions/setup-node@v2
with:
cache: 'yarn'
node-version: ${{ matrix.node-version }}
- name: Install Yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install
- name: Lint
run: yarn lint
- name: Install keploy
run: curl -O https://raw.githubusercontent.com/keploy/keploy/main/keploy.sh && source keploy.sh
- name: Run Keploy test
run: keploy -c "yarn e2eTest"
- name: Test
run: yarn test
- name: Total Coverage
run: yarn coverage:total