Merge pull request #124 from SnakeDoc/renovate/markdownlint-cli2-0.x #201
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Workflow | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| prettier-format-check: | |
| name: Format Check | |
| uses: SnakeDoc/yodel/.github/workflows/prettier-format-check.yaml@main | |
| markdown-lint-check: | |
| name: Lint Check | |
| uses: SnakeDoc/yodel/.github/workflows/markdown-lint-check.yaml@main | |
| gleam-format-check: | |
| name: Format Check | |
| uses: SnakeDoc/yodel/.github/workflows/gleam-format-check.yaml@main | |
| gleam-tests: | |
| name: Tests | |
| needs: [prettier-format-check, markdown-lint-check, gleam-format-check] | |
| uses: SnakeDoc/yodel/.github/workflows/gleam-tests.yaml@main |