Skip to content

Installing Go MuTesting go workflow #17

Installing Go MuTesting go workflow

Installing Go MuTesting go workflow #17

Workflow file for this run

on:
pull_request:
push:
defaults:
run:
working-directory: typescript
jobs:
test:
runs-on: ubuntu-latest
name: Test
steps:
- uses: actions/checkout@v4
name: Checkout code
- uses: actions/setup-node@v4
name: Install NodeJS
with:
node-version: latest
cache: 'npm'
cache-dependency-path: typescript/package-lock.json
- run: npm ci
name: Install dependencies
- run: npm test
name: Run tests
- run: npx stryker run
name: Run mutation testing tool