Skip to content

Commit c3692e9

Browse files
authored
feat(close #9): add build source github workflow (#13)
* ci(github): add build source github workflow * ci(github): separate lint & build into 2 jobs
1 parent eefc444 commit c3692e9

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

.github/workflows/main.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<img src="https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=flat-square">
88
</a>
99
<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">
1111
</a>
1212
<a href="https://david-dm.org/boringcodes/utils" aria-label="Dependencies Status">
1313
<img src="https://img.shields.io/david/boringcodes/utils?style=flat-square">

0 commit comments

Comments
 (0)