From 154e013c9b14406f4f7b04e7b2107ca54a449025 Mon Sep 17 00:00:00 2001 From: Benedikt Schesch Date: Wed, 15 May 2024 23:06:12 -0700 Subject: [PATCH] Fix --- .github/workflows/check-style.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check-style.yml b/.github/workflows/check-style.yml index 668354cf26..77dcf9c374 100644 --- a/.github/workflows/check-style.yml +++ b/.github/workflows/check-style.yml @@ -8,6 +8,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + - name: Install markdownlint + run: | + npm install markdownlint --save-dev -g + markdownlint --version - uses: psf/black@stable - name: Set up Python 3.12 uses: actions/setup-python@v5 @@ -22,10 +27,6 @@ jobs: channels: conda-forge,defaults activate-environment: AST environment-file: environment.yml - - name: Install markdownlint - run: | - npm install markdownlint --save-dev - markdownlint --version - name: Install shellcheck and checkbashisms run: sudo apt update && sudo apt install shellcheck devscripts - name: Check style