File tree Expand file tree Collapse file tree 3 files changed +25
-24
lines changed Expand file tree Collapse file tree 3 files changed +25
-24
lines changed Original file line number Diff line number Diff line change
1
+ name : build
2
+
3
+ on : [push, pull_request]
4
+
5
+ env :
6
+ FORCE_COLOR : 3
7
+
8
+ jobs :
9
+ build :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+ - name : Use Node.js
14
+ uses : actions/setup-node@v1
15
+ with :
16
+ node-version : ' 14.7.0'
17
+ - run : yarn --frozen-lockfile
18
+ - run : yarn prettier-check
19
+ - run : yarn tslint
20
+ - run : yarn typecheck
21
+ - run : yarn build
22
+ - run : yarn cover
23
+ - run : yarn nyc report --reporter json
24
+ - run : ' bash <(curl -s https://codecov.io/bash)'
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# sourcegraph-git-extras
2
2
3
- [ ![ build] ( https://travis-ci.org/ sourcegraph/sourcegraph-git-extras.svg?branch=master )] ( https://travis-ci.org /sourcegraph/sourcegraph-git-extras )
3
+ [ ![ master build status ] ( https://img.shields.io/github/workflow/status/ sourcegraph/sourcegraph-git-extras/build/master?logo=github )] ( https://github.com /sourcegraph/sourcegraph-git-extras/actions?query=branch%3Amaster )
4
4
[ ![ codecov] ( https://codecov.io/gh/sourcegraph/sourcegraph-git-extras/branch/master/graph/badge.svg?token=c3KpMf1MaY )] ( https://codecov.io/gh/sourcegraph/sourcegraph-git-extras )
5
5
[ ![ code style: prettier] ( https://img.shields.io/badge/code_style-prettier-ff69b4.svg )] ( https://github.com/prettier/prettier )
6
6
You can’t perform that action at this time.
0 commit comments