File tree 4 files changed +26
-16
lines changed
4 files changed +26
-16
lines changed Original file line number Diff line number Diff line change
1
+ name : ci
2
+ ' on ' :
3
+ - push
4
+ - pull_request
5
+ jobs :
6
+ test :
7
+ name : Node ${{ matrix.node }} / ${{ matrix.os }}
8
+ runs-on : ${{ matrix.os }}
9
+ strategy :
10
+ fail-fast : false
11
+ matrix :
12
+ os :
13
+ - ubuntu-latest
14
+ node :
15
+ - ' 14'
16
+ steps :
17
+ - uses : actions/checkout@v2
18
+ - uses : actions/setup-node@v2
19
+ with :
20
+ node-version : ${{ runner.node }}
21
+ - run : npm install
22
+ - run : npm run build --if-present
23
+ - run : npm test
Original file line number Diff line number Diff line change 1
1
.airtap.yml
2
2
.github /
3
- .travis.yml
4
3
bin /
5
4
perf /
6
5
test /
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- # buffer [ ![ travis ] [ travis -image]] [ travis -url] [ ![ npm] [ npm-image ]] [ npm-url ] [ ![ downloads] [ downloads-image ]] [ downloads-url ] [ ![ javascript style guide] [ standard-image ]] [ standard-url ]
1
+ # buffer [ ![ ci ] [ ci -image]] [ ci -url] [ ![ npm] [ npm-image ]] [ npm-url ] [ ![ downloads] [ downloads-image ]] [ downloads-url ] [ ![ javascript style guide] [ standard-image ]] [ standard-url ]
2
2
3
- [ travis -image] : https://img.shields.io/travis/ feross/buffer/master.svg
4
- [ travis -url] : https://travis-ci.org /feross/buffer
3
+ [ ci -image] : https://img.shields.io/github/workflow/status/ feross/buffer/ci/ master
4
+ [ ci -url] : https://github.com /feross/buffer/actions
5
5
[ npm-image ] : https://img.shields.io/npm/v/buffer.svg
6
6
[ npm-url ] : https://npmjs.org/package/buffer
7
7
[ downloads-image ] : https://img.shields.io/npm/dm/buffer.svg
You can’t perform that action at this time.
0 commit comments