Skip to content

Commit 39d5270

Browse files
authored
add gha workflows (#5)
1 parent 046e27a commit 39d5270

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/workflow.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: OpenAPI Tools
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- renovate/**
8+
pull_request:
9+
workflow_dispatch:
10+
11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
13+
cancel-in-progress: true
14+
15+
jobs:
16+
prettier-format-check:
17+
name: Format Check
18+
uses: bymbly/gha-workflows/.github/workflows/prettier-format-check.yaml@main
19+
20+
markdown-lint-check:
21+
name: Lint Check
22+
uses: bymbly/gha-workflows/.github/workflows/markdown-lint-check.yaml@main
23+
24+
npm-test:
25+
name: npm Test
26+
uses: bymbly/gha-workflows/.github/workflows/npm-test.yaml@main

0 commit comments

Comments
 (0)