File tree Expand file tree Collapse file tree 3 files changed +29
-14
lines changed Expand file tree Collapse file tree 3 files changed +29
-14
lines changed Original file line number Diff line number Diff line change
1
+ name : Node.js CI
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
+
9
+ jobs :
10
+ build :
11
+
12
+ runs-on : ubuntu-latest
13
+
14
+ strategy :
15
+ matrix :
16
+ node-version : [14.x, 16.x, 18.x]
17
+ # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
18
+
19
+ steps :
20
+ - uses : actions/checkout@v3
21
+ - name : Use Node.js ${{ matrix.node-version }}
22
+ uses : actions/setup-node@v1
23
+ with :
24
+ node-version : ${{ matrix.node-version }}
25
+ - run : npm ci
26
+ - run : npm test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,9 +5,8 @@ unassertify
5
5
6
6
[ ![ unassert] [ unassert-banner ]] [ unassert-url ]
7
7
8
- [ ![ Build Status] [ travis -image]] [ travis -url]
8
+ [ ![ Build Status] [ ci -image]] [ ci -url]
9
9
[ ![ NPM version] [ npm-image ]] [ npm-url ]
10
- [ ![ Dependency Status] [ depstat-image ]] [ depstat-url ]
11
10
[ ![ License] [ license-image ]] [ license-url ]
12
11
13
12
@@ -154,11 +153,8 @@ Licensed under the [MIT](https://github.com/unassert-js/unassertify/blob/master/
154
153
[ npm-url ] : https://npmjs.org/package/unassertify
155
154
[ npm-image ] : https://badge.fury.io/js/unassertify.svg
156
155
157
- [ travis-url ] : https://travis-ci.org/unassert-js/unassertify
158
- [ travis-image ] : https://secure.travis-ci.org/unassert-js/unassertify.svg?branch=master
159
-
160
- [ depstat-url ] : https://gemnasium.com/unassert-js/unassertify
161
- [ depstat-image ] : https://gemnasium.com/unassert-js/unassertify.svg
156
+ [ ci-image ] : https://github.com/unassert-js/unassertify/workflows/Node.js%20CI/badge.svg
157
+ [ ci-url ] : https://github.com/unassert-js/unassertify/actions?query=workflow%3A%22Node.js+CI%22
162
158
163
159
[ license-url ] : https://github.com/unassert-js/unassertify/blob/master/LICENSE
164
160
[ license-image ] : https://img.shields.io/badge/license-MIT-brightgreen.svg
You can’t perform that action at this time.
0 commit comments