File tree 3 files changed +26
-15
lines changed
3 files changed +26
-15
lines changed Original file line number Diff line number Diff line change
1
+ name : Node.js CI
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ build :
7
+
8
+ runs-on : ubuntu-latest
9
+
10
+ env :
11
+ CI : true
12
+
13
+ strategy :
14
+ matrix :
15
+ node-version : [14.x, 16.x, 18.x]
16
+
17
+ steps :
18
+ - uses : actions/checkout@v2
19
+ - name : Use Node.js ${{ matrix.node-version }}
20
+ uses : actions/setup-node@v3
21
+ with :
22
+ node-version : ${{ matrix.node-version }}
23
+ - run : npm install -g npm@latest # to support newer lock file
24
+ - run : npm ci
25
+ - run : npm run test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# gulp-requirejs
2
2
3
3
[ ![ gulp-requirejs on npm] ( https://img.shields.io/npm/v/gulp-requirejs.svg?style=flat )] ( https://www.npmjs.com/package/gulp-requirejs )
4
- [ ![ Dependency Status] ( https://david-dm.org/jorrit/gulp-requirejs/status.svg )] ( https://david-dm.org/jorrit/gulp-requirejs )
5
- [ ![ Development Dependency Status] ( https://david-dm.org/jorrit/gulp-requirejs/dev-status.svg )] ( https://david-dm.org/jorrit/gulp-requirejs?type=dev )
6
- [ ![ Build Status] ( https://travis-ci.org/jorrit/gulp-requirejs.svg?branch=master )] ( https://travis-ci.org/jorrit/gulp-requirejs )
4
+ ![ Build Status] ( https://github.com/jorrit/gulp-requirejs/workflows/Node.js%20CI/badge.svg )
7
5
[ ![ Coverage] ( https://coveralls.io/repos/github/jorrit/gulp-requirejs/badge.svg )] ( https://coveralls.io/github/jorrit/gulp-requirejs )
8
6
9
7
## Information
You can’t perform that action at this time.
0 commit comments