Skip to content

Commit c7f8bce

Browse files
author
Victor Navarro
committed
ci: on push master checks
1 parent 0a03ef4 commit c7f8bce

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI
2+
on:
3+
push
4+
5+
jobs:
6+
ci:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v2
11+
- name: Install Dependencies
12+
run: yarn install
13+
- name: Run Linters
14+
run: yarn lint
15+
- name: Build Package
16+
run: yarn build

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
uses: actions/checkout@v2
1212
- name: Install Dependencies
1313
run: yarn install
14+
- name: Build Package
15+
run: yarn build
1416
- name: Run Action
1517
uses: ./
1618
with:

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
<h1>☝ update-version</h1>
33
<p>Update your files version field on new releases</p>
44
<p align="center">
5+
<img alt="GitHub Workflow Status" src="https://img.shields.io/github/workflow/status/pocket-studios/action-update-version/ci">
56
<img alt="GitHub release (latest by date)" src="https://img.shields.io/github/v/release/pocket-studios/action-update-version">
7+
<img alt="GitHub" src="https://img.shields.io/github/license/pocket-studios/action-update-version">
68
</p>
79
</div>
810

0 commit comments

Comments
 (0)