File tree Expand file tree Collapse file tree 4 files changed +469
-0
lines changed Expand file tree Collapse file tree 4 files changed +469
-0
lines changed Original file line number Diff line number Diff line change 1+ name : test
2+
3+ on :
4+ pull_request :
5+ push :
6+ branches :
7+ - master
8+
9+ jobs :
10+ test :
11+ strategy :
12+ matrix :
13+ operating-system : [ubuntu-latest, windows-latest]
14+
15+ runs-on : ${{ matrix.operating-system }}
16+
17+ steps :
18+ - name : Disable EOL conversions
19+ run : git config --global core.autocrlf false
20+
21+ - name : Checkout
22+ uses : actions/checkout@master
23+
24+ - name : Smoke test
25+ uses : actions/setup-node@v1
26+ with :
27+ node-version : ' 12'
28+ - run : npm install
29+ - run : npm run build
30+ - run : cd smoke_test
31+ - run : npm install request
32+ - run : npm install request-promise
33+ - run : ./node_modules/mocha/bin/mocha smoke_test/smoke_test.js
34+ env :
35+ CLIENT_ID : ${{ secrets.CLIENT_ID }}
36+ CLIENT_SECRET : ${{ secrets.CLIENT_SECRET }}
You can’t perform that action at this time.
0 commit comments