Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
#58 fix keys.ts
  • Loading branch information
enriquezrene committed Apr 12, 2020
commit 8688e4aaf554eb668277de59a3892f42705dcd06
38 changes: 38 additions & 0 deletions .github/workflows/CI-mutation-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Running mutation tests

on:
schedule:
- cron: '0 9 * * 1'

jobs:
configuring-stryker:
name: Running stryker
runs-on: ubuntu-latest
timeout-minutes: 360
steps:
- name: Clone and checkout branch
uses: actions/checkout@master

- name: Set up Node.js version
uses: actions/setup-node@v1
with:
node-version: '12.x'

- name: Install dependencies
run: npm install

- name: Inject Secrets
env:
SCOPES: ${{ secrets.scopes }}
CLIENT_ID: ${{ secrets.client_id }}
AUTHORITY: ${{ secrets.authority }}
run: sudo sh scripts/populate-keys.sh

- name: Run the test
run: npm run ci-test --if-present

- name: Installing stryker-cli
run: npm install -g stryker-cli

- name: Running stryker
run: stryker run