From 4b41fd851000bbbcbf1bae4c38438ff31f33882a Mon Sep 17 00:00:00 2001 From: az33zy <10743275+az33zy@users.noreply.github.com> Date: Tue, 24 Dec 2024 20:42:23 +0500 Subject: [PATCH] add lint step to ci --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 23329b9..d9585f9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,4 +22,6 @@ jobs: node-version: lts/* cache: pnpm - run: pnpm install --frozen-lockfile + - run: pnpm lint - run: pnpm test + if: (${{ success() }} || ${{ failure() }}) # ensures this step runs even if previous steps fail