Skip to content

chore(deps): update davidanson/markdownlint-cli2-action action to v18 #195

chore(deps): update davidanson/markdownlint-cli2-action action to v18

chore(deps): update davidanson/markdownlint-cli2-action action to v18 #195

Workflow file for this run

name: Checks for pull request
on:
pull_request:
branches:
- main
jobs:
path-filter:
timeout-minutes: 30
outputs:
actions: ${{steps.changes.outputs.actions}}
ts: ${{steps.changes.outputs.ts}}
runs-on: ubuntu-latest
permissions: {}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
id: changes
with:
filters: |
actions:
- .github/workflows/*.yml
- .github/workflows/*.yaml
- aqua.yaml
ts:
- .github/workflows/push.yml
- .github/workflows/_check-deno.yml
- ./**/*.ts
- deno.jsonc
- jsr.json
check-actions:
needs: path-filter
if: needs.path-filter.outputs.actions == 'true'
uses: ./.github/workflows/_check-actions.yml
permissions:
contents: read
check-deno:
needs: path-filter
if: needs.path-filter.outputs.ts == 'true'
uses: ./.github/workflows/_check-deno.yml
permissions:
contents: read
status-check:
timeout-minutes: 30
runs-on: ubuntu-latest
needs:
- check-actions
- check-deno
permissions: {}
if: failure()
steps:
- run: exit 1