File tree Expand file tree Collapse file tree 3 files changed +25
-18
lines changed
Expand file tree Collapse file tree 3 files changed +25
-18
lines changed Original file line number Diff line number Diff line change 1+ name : node_js CI
2+
3+ on : [push, pull_request]
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - uses : actions/checkout@v2
10+ - uses : actions/setup-node@v1
11+ with :
12+ node-version : 12
13+ - run : npm ci
14+ - run : make validate-no-uncommitted-package-lock-changes
15+ - run : npm run lint
16+ - run : npm run test
17+ - run : npm run build
18+ - name : Coveralls
19+ uses : coverallsapp/github-action@master
20+ with :
21+ github-token : ${{ secrets.GITHUB_TOKEN }}
22+ - name : Upload Coverage
23+ uses : codecov/codecov-action@v1
24+ with :
25+ fail_ci_if_error : true
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -11,8 +11,6 @@ Introduction
1111React app for program management. For now, that'll just be uploads
1212and downloads of CSVs containing enrollment data.
1313
14- .. |Build Status | image :: https://api.travis-ci.com/edx/frontend-app-program-console.svg?branch=master
15- :target: https://travis-ci.com/edx/frontend-app-program-console
1614.. |Coveralls | image :: https://img.shields.io/coveralls/edx/frontend-app-program-console.svg?branch=master
1715 :target: https://coveralls.io/github/edx/frontend-app-program-console
1816.. |npm_version | image :: https://img.shields.io/npm/v/@edx/frontend-app-program-console.svg
You can’t perform that action at this time.
0 commit comments