Skip to content

Commit a10a3eb

Browse files
authored
Merge 208b3e4 into a1c4c08
2 parents a1c4c08 + 208b3e4 commit a10a3eb

File tree

3 files changed

+25
-18
lines changed

3 files changed

+25
-18
lines changed

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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

.travis.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

README.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ Introduction
1111
React app for program management. For now, that'll just be uploads
1212
and 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

0 commit comments

Comments
 (0)