diff --git a/.github/workflows/gated-ci-atomic.yml b/.github/workflows/gated-ci-atomic.yml index 1a3a40476..cca1d517d 100644 --- a/.github/workflows/gated-ci-atomic.yml +++ b/.github/workflows/gated-ci-atomic.yml @@ -111,7 +111,22 @@ jobs: with: node-version: 20 - - name: Install dependencies + - name: Install root dependencies + run: | + cd ../.. + npm install + + - name: Install DBAL dependencies + run: | + cd ../../dbal/development + npm install + + - name: Generate DBAL types from YAML schemas + run: | + cd ../../dbal/development + npx tsx ../shared/tools/codegen/generate-types.ts + + - name: Install frontend dependencies run: npm install - name: Generate Prisma Client diff --git a/.github/workflows/gated-ci.yml b/.github/workflows/gated-ci.yml index 5f3b55140..45cf424b8 100644 --- a/.github/workflows/gated-ci.yml +++ b/.github/workflows/gated-ci.yml @@ -91,7 +91,22 @@ jobs: with: node-version: 20 - - name: Install dependencies + - name: Install root dependencies + run: | + cd ../.. + npm install + + - name: Install DBAL dependencies + run: | + cd ../../dbal/development + npm install + + - name: Generate DBAL types from YAML schemas + run: | + cd ../../dbal/development + npx tsx ../shared/tools/codegen/generate-types.ts + + - name: Install frontend dependencies run: npm install - name: Generate Prisma Client