From d8d0254523f296a00d475f61b440a44643a516f5 Mon Sep 17 00:00:00 2001 From: Huskydog9988 <39809509+Huskydog9988@users.noreply.github.com> Date: Sun, 13 Apr 2025 21:46:41 -0400 Subject: [PATCH] feat: add lint ci job --- server/.github/workflows/ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/server/.github/workflows/ci.yml b/server/.github/workflows/ci.yml index 7451884e..1ae20e5b 100644 --- a/server/.github/workflows/ci.yml +++ b/server/.github/workflows/ci.yml @@ -23,3 +23,24 @@ jobs: - name: Typecheck run: yarn typecheck + + lint: + name: Lint + runs-on: ubuntu-latest + steps: + - name: Check out the repo + uses: actions/checkout@v4 + with: + submodules: true + + - name: Setup Node.js environment + uses: actions/setup-node@v4 + with: + node-version: lts/* + cache: "yarn" + + - name: Install dependencies + run: yarn install --immutable --network-timeout 1000000 + + - name: Lint + run: yarn lint