File tree 2 files changed +31
-1
lines changed
2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : main
2
+
3
+ on : push
4
+
5
+ jobs :
6
+ lint :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v2
10
+ - uses : actions/setup-node@v1
11
+ with :
12
+ node-version : 12
13
+ registry-url : https://registry.npmjs.org
14
+ - name : Install dependencies
15
+ run : yarn
16
+ - name : Analyze code
17
+ run : yarn lint
18
+
19
+ build :
20
+ runs-on : ubuntu-latest
21
+ steps :
22
+ - uses : actions/checkout@v2
23
+ - uses : actions/setup-node@v1
24
+ with :
25
+ node-version : 12
26
+ registry-url : https://registry.npmjs.org
27
+ - name : Install dependencies
28
+ run : yarn
29
+ - name : Build code
30
+ run : yarn build
Original file line number Diff line number Diff line change 7
7
<img src="https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=flat-square">
8
8
</a>
9
9
<a href="https://github.com/boringcodes/utils/actions" aria-label="GitHub Workflow Status">
10
- <img src="https://img.shields.io/github/workflow/status/boringcodes/utils/publish-npm ?style=flat-square">
10
+ <img src="https://img.shields.io/github/workflow/status/boringcodes/utils/main ?style=flat-square">
11
11
</a>
12
12
<a href="https://david-dm.org/boringcodes/utils" aria-label="Dependencies Status">
13
13
<img src="https://img.shields.io/david/boringcodes/utils?style=flat-square">
You can’t perform that action at this time.
0 commit comments