diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 628b8ea434..b8aed262a4 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -57,7 +57,7 @@ jobs: restore-keys: | ${{ runner.os }}-pnpm-store- - name: Install dependencies for packages - run: pnpm bootstrap + run: pnpm i - name: run unit tests working-directory: ./packages/nocodb run: pnpm run test:unit @@ -97,7 +97,7 @@ jobs: working-directory: ./ run: docker-compose -f ./tests/playwright/scripts/docker-compose-playwright-pg.yml up -d & - name: install dependencies - run: pnpm bootstrap + run: pnpm i - name: run unit tests working-directory: ./packages/nocodb run: pnpm run test:unit:pg diff --git a/.github/workflows/playwright-test-workflow.yml b/.github/workflows/playwright-test-workflow.yml index 5f2434c5d7..c067011547 100644 --- a/.github/workflows/playwright-test-workflow.yml +++ b/.github/workflows/playwright-test-workflow.yml @@ -58,7 +58,7 @@ jobs: - name: Set NC Edition run: export EE=true - name: install dependencies - run: pnpm bootstrap + run: pnpm i - name: Setup mysql if: ${{ inputs.db == 'mysql' }} working-directory: ./packages/nocodb/tests/mysql-sakila-db diff --git a/.github/workflows/release-timely-executables.yml b/.github/workflows/release-timely-executables.yml index 93c1b43515..98c5ce2258 100644 --- a/.github/workflows/release-timely-executables.yml +++ b/.github/workflows/release-timely-executables.yml @@ -84,7 +84,7 @@ jobs: - name : Install dependencies and build executables run: | # install pnpm dependendencies - pnpm bootstrap + pnpm i # Copy sqlite binaries # rsync -rvzhP ./binaries/binding/ ./node_modules/sqlite3/lib/binding/ diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 369ad4c629..20f7cb9bbb 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -35,7 +35,7 @@ jobs: node-version: ${{ matrix.node-version }} cache: 'pnpm' - name: install dependencies - run: pnpm bootstrap + run: pnpm i - name: run unit tests working-directory: ./packages/nocodb run: pnpm run unit-test \ No newline at end of file diff --git a/.github/workflows/update-sdk-path.yml b/.github/workflows/update-sdk-path.yml index 4ac8edb0a1..7014cb316e 100644 --- a/.github/workflows/update-sdk-path.yml +++ b/.github/workflows/update-sdk-path.yml @@ -23,7 +23,7 @@ jobs: fetch-depth: 0 - run: | - pnpm bootstrap + pnpm i - name: Create Pull Request id: cpr