File tree Expand file tree Collapse file tree 2 files changed +31
-1
lines changed
Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Tests
2+ on : [push, pull_request]
3+ env :
4+ CI : true
5+
6+ jobs :
7+ run :
8+ name : Node ${{ matrix.node }}
9+ runs-on : ubuntu-latest
10+
11+ strategy :
12+ fail-fast : false
13+
14+ steps :
15+ - name : Clone repository
16+ uses : actions/checkout@v2
17+
18+ - name : Set Node.js version
19+ uses : actions/setup-node@v1
20+ with :
21+ node-version : " 12.x"
22+
23+ - run : node --version
24+ - run : npm --version
25+
26+ - name : Install npm dependencies
27+ run : npm ci
28+
29+ - name : Run tests
30+ run : npm test
Original file line number Diff line number Diff line change 1- # coronavirus-tracker-cli
1+ # coronavirus-tracker-cli [ ![ Build Status ] ( https://github.com/sagarkarira/coronavirus-tracker-cli/workflows/Tests/badge.svg )] ( https://github.com/sagarkarira/coronavirus-tracker-cli/actions?workflow=Tests )
22
33Track The Corona virus from your CLI
44
You can’t perform that action at this time.
0 commit comments