diff --git a/.github/workflows/verify.yml b/.github/workflows/verify-api-server.yml similarity index 75% rename from .github/workflows/verify.yml rename to .github/workflows/verify-api-server.yml index 717c95852c3..4192d9f7b9e 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify-api-server.yml @@ -20,6 +20,8 @@ jobs: - uses: pnpm/action-setup@v4 name: Install pnpm + with: + run_install: true - name: Install Node.js uses: actions/setup-node@v4 @@ -27,8 +29,8 @@ jobs: node-version: 22 cache: 'pnpm' - - name: Install OSSInsight Types Dependencies - run: pnpm --filter "@ossinsight/types" --frozen-lockfile --strict-peer-dependencies install && pnpm --filter "@ossinsight/types" build + - name: Build OSSInsight Types Dependencies + run: pnpm --filter "@ossinsight/types" build - name: Verify Sources run: pnpm run test diff --git a/.github/workflows/verify-collection-configs.yml b/.github/workflows/verify-collection-configs.yml index 7d9029cae37..5efe2deb26f 100644 --- a/.github/workflows/verify-collection-configs.yml +++ b/.github/workflows/verify-collection-configs.yml @@ -20,6 +20,8 @@ jobs: - uses: pnpm/action-setup@v4 name: Install pnpm + with: + run_install: true - name: Install Node.js uses: actions/setup-node@v4 diff --git a/.github/workflows/verify-query.yml b/.github/workflows/verify-query-configs.yml similarity index 80% rename from .github/workflows/verify-query.yml rename to .github/workflows/verify-query-configs.yml index 548c515e0a7..aa0cd1060a6 100644 --- a/.github/workflows/verify-query.yml +++ b/.github/workflows/verify-query-configs.yml @@ -1,4 +1,4 @@ -name: Verify Query Definition +name: Verify Query Configs on: pull_request: @@ -21,6 +21,8 @@ jobs: - uses: pnpm/action-setup@v4 name: Install pnpm + with: + run_install: true - name: Install Node.js uses: actions/setup-node@v4 @@ -28,8 +30,5 @@ jobs: node-version: 22 cache: 'pnpm' - - name: Install Dependencies - run: pnpm i --frozen-lockfile --strict-peer-dependencies - - name: Verify Query Definition run: pnpm run validate:query