Skip to content

test: add mutation testing with Stryker #139

test: add mutation testing with Stryker

test: add mutation testing with Stryker #139

Workflow file for this run

on:
push:
branches:
- master
pull_request:
branches:
- master
name: Node.js CI
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'npm'
- run: npm ci
- run: npm run test:cov
- name: CodeClimate
if: ${{ github.ref == 'refs/heads/master' }}
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}