diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 44dcf985..135d0a45 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -120,20 +120,14 @@ jobs: composer coding-standards-check/twig-cs-fixer coding-standards-markdown: - name: Yarn - Check Coding Standards (Node ${{ matrix.node }}) + name: Markdown - Check Coding Standards runs-on: ubuntu-latest - strategy: - matrix: - node: [ '16' ] steps: - uses: actions/checkout@v4 - - name: Setup node - uses: actions/setup-node@v2 - with: - node-version: ${{ matrix.node }} - - run: | - yarn install - yarn coding-standards-check + - uses: pnorton5432/setup-task@v1 + - run: task coding-standards:markdown:check + # Check for any changes + - run: git diff --exit-code && exit 1 || exit 0 code-analysis: name: PHP - Code analysis