File tree Expand file tree Collapse file tree 3 files changed +28
-21
lines changed Expand file tree Collapse file tree 3 files changed +28
-21
lines changed Original file line number Diff line number Diff line change
1
+ name : build
2
+ on : [push, pull_request]
3
+ jobs :
4
+ build :
5
+ runs-on : ubuntu-latest
6
+ strategy :
7
+ matrix :
8
+ node-version : [14]
9
+ steps :
10
+ - uses : actions/checkout@v2
11
+ with :
12
+ fetch-depth : 0
13
+ - name : Use Node.js ${{ matrix.node-version }}
14
+ uses : actions/setup-node@v1
15
+ with :
16
+ node-version : ${{ matrix.node-version }}
17
+ - run : npm install
18
+ - run : npx commitlint --from=HEAD~1
19
+ - run : npm run lint
20
+ - run : npm run lint:dts
21
+ - run : npm run test:ci
22
+ - run : npm run build
23
+ - run : npm run benchmark
24
+ - name : Coveralls
25
+ uses : coverallsapp/github-action@master
26
+ with :
27
+ github-token : ${{ secrets.GITHUB_TOKEN }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3
3
[ ![ NPM] ( https://nodei.co/npm/html-react-parser.png )] ( https://nodei.co/npm/html-react-parser/ )
4
4
5
5
[ ![ NPM version] ( https://img.shields.io/npm/v/html-react-parser.svg )] ( https://www.npmjs.com/package/html-react-parser )
6
- [ ![ Build Status] ( https://travis-ci.org /remarkablemark/html-react-parser.svg?branch=master )] ( https://travis-ci.org /remarkablemark/html-react-parser )
6
+ [ ![ Build Status] ( https://github.com /remarkablemark/html-react-parser/workflows/build/badge .svg?branch=master )] ( https://github.com /remarkablemark/html-react-parser/actions?query=workflow%3Abuild )
7
7
[ ![ Coverage Status] ( https://coveralls.io/repos/github/remarkablemark/html-react-parser/badge.svg?branch=master )] ( https://coveralls.io/github/remarkablemark/html-react-parser?branch=master )
8
8
[ ![ Dependency status] ( https://david-dm.org/remarkablemark/html-react-parser.svg )] ( https://david-dm.org/remarkablemark/html-react-parser )
9
9
[ ![ NPM downloads] ( https://img.shields.io/npm/dm/html-react-parser.svg?style=flat-square )] ( https://www.npmjs.com/package/html-react-parser )
You can’t perform that action at this time.
0 commit comments