Skip to content

Commit 1a927cb

Browse files
authored
Merge pull request #2 from TheoBrigitte/build-github-action
add build github action
2 parents 3d6aa27 + df34058 commit 1a927cb

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.github/workflows/build.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: build
2+
3+
on: push
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-node@v4
11+
with:
12+
node-version: 20
13+
- run: npm clean-install

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
<img src="assets/changelog.svg" alt="changelog" height="100px">
33
</p>
44

5+
<p align="center">
6+
<a href="https://github.com/TheoBrigitte/changelog-parser/releases"><img src="https://img.shields.io/github/release/TheoBrigitte/changelog-parser.svg" alt="Github release"></a>
7+
<a href="https://github.com/TheoBrigitte/changelog-parser/actions/workflows/build.yaml"><img src="https://github.com/TheoBrigitte/changelog-parser/actions/workflows/build.yaml/badge.svg" alt="Github action"></a>
8+
</p>
9+
510
# changelog parser
611

712
A command-line tool to easily manage and manipulate changelog files, ensuring consistency with the [keep a changelog](https://keepachangelog.com) format.

0 commit comments

Comments
 (0)