diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e58e99a0..81437a48 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -50,7 +50,7 @@ jobs: skip-pkg-cache: true markdownlint-misspell-shellcheck: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 # this image is build from Dockerfile # https://github.com/pouchcontainer/pouchlinter/blob/master/Dockerfile container: pouchcontainer/pouchlinter:v0.1.2 @@ -58,9 +58,9 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Run misspell - run: find ./* -name "*" | grep -v vendor | xargs misspell -error - - name: Run shellcheck - run: find ./ -name "*.sh" | grep -v vendor | xargs shellcheck + run: find ./* -name "*" | xargs misspell -error + - name: Lint markdown files + run: find ./ -name "*.md" | grep -v enhancements | grep -v .github unit-tests: runs-on: ubuntu-20.04