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