File tree Expand file tree Collapse file tree 3 files changed +32
-11
lines changed
Expand file tree Collapse file tree 3 files changed +32
-11
lines changed Original file line number Diff line number Diff line change 1+ name : build
2+
3+ on :
4+ push :
5+ paths-ignore :
6+ - ' **.md'
7+ pull_request :
8+ paths-ignore :
9+ - ' **.md'
10+
11+ jobs :
12+ test :
13+
14+ runs-on : ${{ matrix.os }}
15+ strategy :
16+ fail-fast : false
17+ matrix :
18+ os : [ubuntu-latest, macos-latest]
19+ node : [ '12', '14', '16' ]
20+
21+ name : Node ${{ matrix.node }}
22+ steps :
23+ - uses : actions/checkout@v2
24+ - name : Setup node
25+ uses : actions/setup-node@v2
26+ with :
27+ node-version : ${{ matrix.node }}
28+ # step 1: install dependencies
29+ - run : npm install
30+ # step 2: run test
31+ - run : npm test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Node.JS bindings for Upwork API (OAuth2)
44[ ![ License] ( http://img.shields.io/packagist/l/upwork/php-upwork.svg )] ( http://www.apache.org/licenses/LICENSE-2.0.html )
55[ ![ npm] ( https://img.shields.io/npm/v/node-upwork-oauth2.svg )] ( https://www.npmjs.com/package/node-upwork-oauth2 )
66[ ![ GitHub release] ( https://img.shields.io/github/release/upwork/node-upwork-oauth2.svg )] ( https://github.com/upwork/node-upwork-oauth2/releases )
7- [ ![ Build Status] ( https://travis-ci.org /upwork/node-upwork-oauth2.svg )] ( https://travis-ci.org /upwork/node-upwork-oauth2 )
7+ [ ![ Build Status] ( https://github.com /upwork/node-upwork-oauth2/workflows/build/badge .svg )] ( https://github.com /upwork/node-upwork-oauth2/actions )
88
99# Introduction
1010This project provides a set of resources of Upwork API from http://developers.upwork.com based on OAuth 2.0.
You can’t perform that action at this time.
0 commit comments