Skip to content

Commit 8688e4a

Browse files
committed
#58 fix keys.ts
1 parent 43526f6 commit 8688e4a

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Running mutation tests
2+
3+
on:
4+
schedule:
5+
- cron: '0 9 * * 1'
6+
7+
jobs:
8+
configuring-stryker:
9+
name: Running stryker
10+
runs-on: ubuntu-latest
11+
timeout-minutes: 360
12+
steps:
13+
- name: Clone and checkout branch
14+
uses: actions/checkout@master
15+
16+
- name: Set up Node.js version
17+
uses: actions/setup-node@v1
18+
with:
19+
node-version: '12.x'
20+
21+
- name: Install dependencies
22+
run: npm install
23+
24+
- name: Inject Secrets
25+
env:
26+
SCOPES: ${{ secrets.scopes }}
27+
CLIENT_ID: ${{ secrets.client_id }}
28+
AUTHORITY: ${{ secrets.authority }}
29+
run: sudo sh scripts/populate-keys.sh
30+
31+
- name: Run the test
32+
run: npm run ci-test --if-present
33+
34+
- name: Installing stryker-cli
35+
run: npm install -g stryker-cli
36+
37+
- name: Running stryker
38+
run: stryker run

0 commit comments

Comments
 (0)