From a4458f2c86a355acbb3ec9e6d7081c534e80341f Mon Sep 17 00:00:00 2001 From: klemek Date: Mon, 15 Jun 2026 20:17:00 +0200 Subject: [PATCH] fix: ci submodules --- .github/workflows/deploy.yml | 2 ++ .github/workflows/lint.yml | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 69cd812..336f837 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -27,6 +27,8 @@ jobs: uses: actions/setup-bun@v2 - name: Checkout repository uses: actions/checkout@v6 + with: + submodules: true - name: Install dependencies run: bun ci - name: Build project diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 67a8878..479e91d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -26,6 +26,8 @@ jobs: uses: actions/setup-bun@v2 - name: Checkout repository uses: actions/checkout@v6 + with: + submodules: true - name: Install dependencies run: bun ci - name: Run ESLint @@ -39,6 +41,8 @@ jobs: uses: actions/setup-bun@v2 - name: Checkout repository uses: actions/checkout@v6 + with: + submodules: true - name: Install dependencies run: bun ci - name: Run Oxlint @@ -52,6 +56,8 @@ jobs: uses: actions/setup-bun@v2 - name: Checkout repository uses: actions/checkout@v6 + with: + submodules: true - name: Install dependencies run: bun ci - name: Run type check