File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments