From 4fe37a214d1153ff36ba106a72779c011b560017 Mon Sep 17 00:00:00 2001 From: picalines Date: Sun, 5 Apr 2026 21:50:12 +0300 Subject: [PATCH 1/2] chore(actions): lint doesn't modify files --- .github/workflows/ci.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a227bc..1bc6bab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,14 +23,6 @@ jobs: - name: Run lint task run: mise run lint - - name: Ensure repo is clean - run: | - if [ -n "$(git status --porcelain)" ]; then - git status --short - echo "error: lint modified files" - exit 1 - fi - check-doc: name: Docs up-to-date runs-on: ubuntu-latest From 2e27bfb2886db7790f4c7f57f07a320fc8cc2554 Mon Sep 17 00:00:00 2001 From: picalines Date: Sun, 5 Apr 2026 21:50:42 +0300 Subject: [PATCH 2/2] chore(actions): run tests in CI --- .github/workflows/ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1bc6bab..23979fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,22 @@ jobs: - name: Run lint task run: mise run lint + test: + name: Test + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v6 + + - name: Setup mise + uses: jdx/mise-action@v4 + with: + install: true + cache: true + + - name: Run test task + run: mise run test + check-doc: name: Docs up-to-date runs-on: ubuntu-latest