diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6b558358..21427ba7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -39,7 +39,7 @@ jobs: # Install the package, including Bazel. - name: Install - run: bazel run @nodejs_host//:npm -- ci + run: bazel run @pnpm//:pnpm -- install --dir $PWD --frozen-lockfile # Build and test the entire repository. Include all supported # `--incompatible_*` flags to avoid regressions. diff --git a/.github/workflows/lint_main.yaml b/.github/workflows/lint_main.yaml index c8e915fa..beb3f0bd 100644 --- a/.github/workflows/lint_main.yaml +++ b/.github/workflows/lint_main.yaml @@ -25,7 +25,7 @@ jobs: key: bazel - name: Install - run: bazel run @nodejs_host//:npm -- ci + run: bazel run @pnpm//:pnpm -- install --dir $PWD --frozen-lockfile # Lint the entire repository. This does not take changes into account and # will show existing lint failures as well as new ones, but that's ok for a diff --git a/.github/workflows/lint_pr.yaml b/.github/workflows/lint_pr.yaml index daaa2c75..da2da645 100644 --- a/.github/workflows/lint_pr.yaml +++ b/.github/workflows/lint_pr.yaml @@ -23,7 +23,7 @@ jobs: key: bazel - name: Install - run: bazel run @nodejs_host//:npm -- ci + run: bazel run @pnpm//:pnpm -- install --dir $PWD --frozen-lockfile # Lint each commit in the given PR. - name: Lint PR diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 99b4887e..9b40cc63 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -39,7 +39,7 @@ jobs: # Install the package, including Bazel. - name: Install - run: bazel run @nodejs_host//:npm -- ci + run: bazel run @pnpm//:pnpm -- install --dir $PWD --frozen-lockfile # Build and test the entire repository. - name: Test