File tree Expand file tree Collapse file tree 3 files changed +28
-32
lines changed
Expand file tree Collapse file tree 3 files changed +28
-32
lines changed Original file line number Diff line number Diff line change 1+ name : ci
2+ on : [push,pull_request]
3+ jobs :
4+ test :
5+ name : Node ${{ matrix.node }} / ${{ matrix.os }}
6+ runs-on : ${{ matrix.os }}
7+ strategy :
8+ fail-fast : false
9+ matrix :
10+ os :
11+ - ubuntu-latest
12+ node :
13+ - ' 12'
14+ - ' 14'
15+ - ' 16'
16+ - ' 18'
17+
18+ steps :
19+ - uses : actions/checkout@v3
20+ - uses : actions/setup-node@v3
21+ with :
22+ node-version : ${{ matrix.node }}
23+ - run : npm install
24+ - run : npm run build --if-present
25+ - run : npm test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# Bencode
2- [ ![ npm] ( https://img.shields.io/npm/v/bencode.svg?style=flat-square )] ( https://npmjs.com/bencode )
3- [ ![ npm downloads] ( https://img.shields.io/npm/dm/bencode.svg?style=flat-square )] ( https://npmjs.com/bencode )
4- [ ![ tests ] ( https://github.com/webtorrent/node-bencode/actions/workflows/test .yml/badge.svg )] ( https://github.com/webtorrent/node-bencode/actions/workflows/test .yml )
2+ [ ![ npm] ( https://img.shields.io/npm/v/bencode.svg )] ( https://npmjs.com/bencode )
3+ [ ![ npm downloads] ( https://img.shields.io/npm/dm/bencode.svg )] ( https://npmjs.com/bencode )
4+ [ ![ ci ] ( https://github.com/webtorrent/node-bencode/actions/workflows/ci .yml/badge.svg?branch=master )] ( https://github.com/webtorrent/node-bencode/actions/workflows/ci .yml )
55[ ![ FOSSA Status] ( https://app.fossa.io/api/projects/git%2Bgithub.com%2Fthemasch%2Fnode-bencode.svg?type=shield )] ( https://app.fossa.io/projects/git%2Bgithub.com%2Fthemasch%2Fnode-bencode?ref=badge_shield )
66
77A node library for encoding and decoding bencoded data,
You can’t perform that action at this time.
0 commit comments