We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 046e27a commit 39d5270Copy full SHA for 39d5270
.github/workflows/workflow.yaml
@@ -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