From b4677534d151b5450986f8d8bc41c948cf7435ec Mon Sep 17 00:00:00 2001 From: Alex Yang <himself65@outlook.com> Date: Mon, 18 Mar 2024 12:49:28 +0800 Subject: [PATCH] ci: install node_modules (#653) --- .github/workflows/publish.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5f70c327b..5d36ee0a8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,6 +14,14 @@ jobs: steps: - uses: actions/checkout@v4 + - uses: pnpm/action-setup@v2 + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version-file: ".nvmrc" + cache: "pnpm" + - name: Install dependencies + run: pnpm install - name: Publish @llamaindex/env run: npx jsr publish -- GitLab