From 1d47d7b61fcf4000d8a34f5d75a29d4213621c2e Mon Sep 17 00:00:00 2001 From: Marc 'risson' Schmitt Date: Tue, 16 Jan 2024 07:25:43 +0100 Subject: [PATCH] ci: website: run codespell Signed-off-by: Marc 'risson' Schmitt --- .github/workflows/ci-website.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci-website.yml b/.github/workflows/ci-website.yml index 78a3a8f8a..d65f5e44e 100644 --- a/.github/workflows/ci-website.yml +++ b/.github/workflows/ci-website.yml @@ -12,6 +12,13 @@ on: - version-* jobs: + lint-codespell: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Setup authentik env + uses: ./.github/actions/setup + - run: poetry run make ci-codespell lint-prettier: runs-on: ubuntu-latest steps: @@ -63,6 +70,7 @@ jobs: run: npm run ${{ matrix.job }} ci-website-mark: needs: + - lint-codespell - lint-prettier - test - build